Advertisement
SergeyBiryukov

Untitled

May 26th, 2015
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function remove_category_prefix_from_archive_title( $title ) {
  2.     if ( is_category() ) {
  3.         $title = single_cat_title( '', false );
  4.     }
  5.  
  6.     return $title;
  7. }
  8. add_filter( 'get_the_archive_title', 'remove_category_prefix_from_archive_title' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement