Archived topic
Delete the "Archive:" before the archives.
3 replies · Started by Giannis on October 16, 2022
Viewing posts 1–4 of 4
Long story short, I only wanna delete the "Archive:" text before every archive.
Hi there,
GP, uses the get_the_archive_title filter which you can see here:
https://developer.wordpress.org/reference/functions/get_the_archive_title/
And you can use it like so in this PHP Snippet::
add_filter( 'get_the_archive_title', function ($title) {
if (is_post_type_archive()) {
$title = post_type_archive_title( '', false );
}
return $title;
});
David is a good man, ladies & gentlemen.
Glad to be of help!!
This archived topic is closed to new replies.