- This topic has 1 reply, 1 voice, and was last updated 7 years, 2 months ago by
shap.
Viewing 1 post (of 1 total)
- AuthorPosts
- February 4, 2018 at 6:49 pm #4670
shap
ParticipantHow to remove “Category:” from category title
It’s easy to do that. Simply open the functions.php file in your theme and add the following code at the end of the file:function prefix_category_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( ”, false );
}
return $title;
}
add_filter( ‘get_the_archive_title’, ‘prefix_category_title’ );Now refresh your category pages and you will see “Category: ” is gone.
- AuthorPosts
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.