Viewing 1 replies (of 1 total)
  • Krishnaa,

    This is possible with a bit of custom development – you could filter the title with the aioseop_title filter and change the title depending on the category of the post in question. Here’s an example where I helped someone do just that; code follows below as well, you can add it to a plugin or to the functions.php in your theme:

    add_filter('aioseop_title', 'sfwd_custom_title');
    
    function sfwd_custom_title($title) {
       if ( is_category( "CategoryName" ) ) {
            $title = "Custom Category Title";
       } elseif ( is_category( "CategoryName2" ) ) {
            $title = "Custom Category Title 2";
       }
       return $title;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Custom Tag Title for Category Posts’ is closed to new replies.