Skip to content

Instantly share code, notes, and snippets.

@cadoo
Last active November 10, 2015 12:42
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 cadoo/21bb214ce8b9a43dea1d to your computer and use it in GitHub Desktop.
Save cadoo/21bb214ce8b9a43dea1d to your computer and use it in GitHub Desktop.
Remove "Category:" from category titles
add_filter( 'get_the_archive_title', function ( $title ) {
if( is_category() ) {
$title = single_cat_title( '', false );
}
return $title;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment