Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created July 18, 2012 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/3137466 to your computer and use it in GitHub Desktop.
Save stuartduff/3137466 to your computer and use it in GitHub Desktop.
Woo FlipFlop categoriies grid on posts
add_action( 'woo_content_before', 'categories_grid', 10 );
function categories_grid() {
if ( is_singular('post') ) {
echo '<section id="main" class="fullwidth">';
get_template_part( 'includes/categories-grid' );
echo '</section>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment