Skip to content

Instantly share code, notes, and snippets.

@generatepress
Last active August 29, 2015 14:26
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 generatepress/926d49a7b3e0919c992a to your computer and use it in GitHub Desktop.
Save generatepress/926d49a7b3e0919c992a to your computer and use it in GitHub Desktop.
Remove category title
add_filter( 'single_cat_title','generate_remove_cat_title' );
function generate_remove_cat_title( $title )
{
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment