Home › Forums › Support › Delete the “Archive:” before the archives. This topic has 3 replies, 2 voices, and was last updated 5 months, 2 weeks ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts October 16, 2022 at 12:57 am #2374931 Giannis Long story short, I only wanna delete the “Archive:” text before every archive. October 16, 2022 at 6:05 am #2375135 DavidStaff Customer Support 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; }); Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ October 16, 2022 at 7:35 am #2375211 Giannis David is a good man, ladies & gentlemen. October 16, 2022 at 7:53 am #2375356 DavidStaff Customer Support Glad to be of help!! Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In