Apr 13, 2021 8:30 am
Hello, I want to delete category name in meta title.
Example meta:
..Post Title.. - ..Category Name.. - ..Site Name..
Change to:
..Post Title.. - ..Site Name..
Cant find the code location.
1 Reply
Apr 15, 2021 8:23 am
Hi @ac10hacks,
You should put this hook code in the functions.php file of your current active WordPress theme or in the Code Snippets plugin:
add_filter('wpforo_seo_topic_title', 'wpforo_my_custom_seo_topic_title');
function wpforo_my_custom_seo_topic_title( $title ){
if( isset($title[1]) ) unset($title[1]);
return $title;
}