We build highly customized sites that are designed to reflect the owner’s aesthetic sensibilities, anticipate growth and modification, and provide an optimized experience for human artificial users.
Whether it be a fresh new website, enhancing performance and functionality of an existing website or recovery from threat or malfunction, our process ensures an efficient environment that follows best practices while being easy to work with.
We have proven that highly customized sites do not need to be complicated to manage or difficult to navigate, we make the complex simple and intuitively comprehensible.
We provide a stable, flexible and secure platform along with the support and training needed so that you may confidently manage your message!

  • Function: Customizing the interface

    Some ways you can take control of the dashboard function modify_footer_admin () { echo ‘Themed and configured by plasterdog web design. ‘; echo ‘Powered by WordPress !‘; } add_filter(‘admin_footer_text’, ‘modify_footer_admin’); Customized footer message function remove_wp_dashboard_widgets(){ remove_meta_box(‘dashboard_incoming_links’, ‘dashboard’, ‘normal’); // Incoming Links remove_meta_box(‘dashboard_quick_press’, ‘dashboard’, ‘side’); // Quick Press remove_meta_box(‘dashboard_recent_drafts’, ‘dashboard’, ‘side’); // Recent Drafts remove_meta_box(‘dashboard_primary’, ‘dashboard’,…

    read more…

  • Function: custom login image

    replacing the default login icon //* -JMC-Replace WordPress login logo with your own add_action(‘login_head’, ‘b3m_custom_login_logo’); function b3m_custom_login_logo() { echo ‘’; } IN FUNCTIONS FILE

    read more…

  • Function: Allow extra HTML items in the excerpt & other fields

    This will allow a reasonable amount of coding in the excerpt field – sorry no WYSIWYG! function theme_t_wp_improved_trim_excerpt($text) { global $post; if ( ” == $text ) { $text = get_the_content(”); $text = apply_filters(‘the_content’, $text); $text = str_replace(‘’, ‘’, $text); $text = preg_replace(‘@]*?>.*?@si’, ”, $text); $text = strip_tags($text, ‘< p >,< ul >,< li >,<…

    read more…