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
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
Thanks, it worked fine.
Regards
Abedi