Remove taxonomy title prefix
-
Hello,
I created a custom template for displaying taxonomies using your instruction at https://wpadverts.com/doc/child-themes-and-templates/
How can I remove the title prefix (Advert Category:) from the category and location page titles. I have tried the code below but did not work
function prefix_category_title( $title ) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'get_the_archive_title', 'prefix_category_title' );
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Remove taxonomy title prefix’ is closed to new replies.