Answer the question
In order to leave comments, you need to log in
How to make your Title in a separate WordPress category?
There is a site on Wp, in fact, you need to change the TITLE in only one separate category, preferably without plugins. There is already an All in One Seo Pack, but I did not find a similar setting for categories there.
Answer the question
In order to leave comments, you need to log in
For example, like this:
function my_title_filter( $title ) {
if (is_category('category-slug'))
return 'my title';
else
return $title;
}
add_filter( 'wp_title', 'my_title_filter', 11, 1 );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question