Skip to content

Instantly share code, notes, and snippets.

@ozzyrod
Created December 19, 2013 17:29
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 ozzyrod/8043041 to your computer and use it in GitHub Desktop.
Save ozzyrod/8043041 to your computer and use it in GitHub Desktop.
Anita Category issue
<?php
// Ignore the top <?php if including in your functions file
add_filter( 'genesis_post_meta', 'anitac_post_meta_filter' );
function anitac_post_meta_filter($post_meta) {
if ( is_home() ) {
$post_meta = '[post_categories before=""]';
return $post_meta;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment