Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #352305

    How to remove the “Archive for category” in category page before the category title?

    thanks

    #352524

    Hey zchristos!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
    	if(is_category())
    	{
    		$output = single_cat_title('',false);
    	}
    
    	return $output;
    }

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.