Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'get_the_archive_title', 'koncrete_child_change_archive_title', 11 );
  4. function koncrete_child_change_archive_title ( $title ) {
  5. if ( is_category() ) {
  6. $title = single_cat_title( '', false ) ;
  7. }
  8. return $title;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement