If you just can’t find how to remove “Archives” from your pages, this quick tip is for you.
This tip is also useful for the woocommerce plugin which uses archive pages, like Archive: Products
Add this to your theme’s function.php file:
1 2 3 4 5 |
add_filter( 'get_the_archive_title', 'remove_archive_from_title' ); function remove_archive_from_title($title) { return str_replace("Archives:","", $title); } |