Skip to content

Instantly share code, notes, and snippets.

@laranz
Created March 22, 2018 03:07
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 laranz/841c1cf37656a83d45df6e2e70fc0770 to your computer and use it in GitHub Desktop.
Save laranz/841c1cf37656a83d45df6e2e70fc0770 to your computer and use it in GitHub Desktop.
add_filter( 'get_the_archive_title', 'custom_category' );
function custom_category( $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