Skip to content

Instantly share code, notes, and snippets.

@manhleo93
Created July 28, 2017 09:40
Show Gist options
  • Save manhleo93/fcd22027452db41476653931c4dba6cd to your computer and use it in GitHub Desktop.
Save manhleo93/fcd22027452db41476653931c4dba6cd to your computer and use it in GitHub Desktop.
//* Xóa Entry Meta Filed Under and Tagged Under trong genesis
add_filter( 'genesis_post_meta', 'ig_entry_meta_footer' );
function ig_entry_meta_footer( $post_meta ) {
$post_meta = '[post_categories before=""] [post_tags before=""]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment