
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!
-
Category specific archive template
just a little insertion at the top of the file < ? php if (is_category(‘otherstuff’)) ? > then name the file “category-otherstuff.php” (in this case)
-
Array of posts by category
pulling posts into a page template < ? php global $post; $args = array( ‘numberposts’ => 6, ‘offset’=> 0, ‘category_name’ => ‘featured’, ‘orderby’ => ‘post_date’, ‘order’ => ‘DSC’); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ? > < div class=”archive-thumb”>< a href=”< ? php the_permalink(); ? >” rel=”bookmark”> < ?…
-
Array of icons attached via radio selection (font awesome)
font awesome must be included < ? php if (get_sub_field(‘example_attribute_icon’) == ‘BELL’) { ? > < i class=”fa fa-bell” aria-hidden=”true”>< /i> < ? php } else if (get_sub_field(‘example_attribute_icon’) == ‘BOMB’) { ? > < i class=”fa fa-bomb” aria-hidden=”true”> < ? php } ? > only two examples shown