arie_cristianD

remove tags prefix on archive page

Dec 9th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | None | 0 0
  1. add_filter(
  2.     'get_the_archive_title_prefix',
  3.     function ( $prefix ) {
  4.         return is_tag() ? '' : $prefix;
  5.     }
  6. );
  7.  
Advertisement
Add Comment
Please, Sign In to add comment