Event
Last updated
function remove_archive_title_prefix($title) {
if (is_post_type_archive('event')) { // Replace 'your_custom_post_type' with your actual post type name
$title = post_type_archive_title('', false); // This removes the "Archives:" prefix
}
return $title;
}
add_filter('get_the_archive_title', 'remove_archive_title_prefix');