Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #238373

    Hi

    When the list of posts belonging to a specific category is shown in the category page, the title of the page is shown as “Archive for category: The Name of the Category”. How to remove “Archive for category: “?
    I just want to show the name of the category as the title of the page.

    Thanks

    #238473

    Hey abedia!

    Please add this on functions.php:

    add_filter('avf_which_archive_output','avf_remove_which_archive', 10, 3);
    
    function avf_remove_which_archive($output) {
    	if ( is_category() ) {
    		$output = __('','avia_framework')." ".single_cat_title('',false);
    	}
    	
    	return $output;
    }

    Best regards,
    Ismael

    #238829

    Thanks, it worked fine.
    Regards
    Abedi

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to remove "Archive for category: " before the title of "Category"’ is closed to new replies.