Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter( 'get_the_archive_title', 'artabr_remove_name_cat' );
  2. function artabr_remove_name_cat( $title ){
  3. if ( is_category() ) {
  4. $title = single_cat_title( '', false );
  5. } elseif ( is_tag() ) {
  6. $title = single_tag_title( '', false );
  7. }
  8. return $title;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement