Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created June 30, 2022 11:47
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 tdmrhn/16238be077d291e9947ca668086139bf to your computer and use it in GitHub Desktop.
Save tdmrhn/16238be077d291e9947ca668086139bf to your computer and use it in GitHub Desktop.
Blocksy Remove WP core archive title prefix
<?php
// remove category: from archives
add_filter( 'get_the_archive_title', function ($title) {
if ( is_tax() ) {
$title = sprintf( __( '%1$s' ), single_term_title( '', false ) );
}
return $title;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment