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!

  • Adding color selectors to customizer

    //JMC => https://code.tutsplus.com/tutorials/a-guide-to-the-wordpress-theme-customizer-adding-a-new-setting–wp-33180 //CUSTOMIZER COLOR ADDITIONS //SETTING UP THE NEW COLOR CONTROL: LINKS function pdog1_register_theme_customizer( $wp_customize ) { $wp_customize->add_setting( ‘pdog_link_color’, array( ‘default’ => ‘#00649c’ ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, ‘link_color’, array( ‘label’ => __( ‘Link Color’, ‘tcx’ ), ‘section’ => ‘colors’, ‘settings’ => ‘pdog_link_color’ ) ) ); } add_action( ‘customize_register’, ‘pdog1_register_theme_customizer’ ); //JMC THIS…

    read more…

  • Miscellaneous Resources

    solid reference links…,

    read more…

  • Set post template by category

    <?php $post = $wp_query->post; if (in_category(‘books’)) { include(get_template_directory().’/single-books.php’); } else{ include(get_template_directory().’/single-default.php’); } ?>

    read more…