Guest User

Untitled

a guest
Jul 21st, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. if( !function_exists( 'marstheme_get_the_archive_title' ) ){
  2.     function marstheme_get_the_archive_title( $title ) {
  3.         if( is_tax( 'video_tag' ) ){
  4.             // changes your text here.
  5.             $title = 'Video Tag: ' . single_term_title( '', false );
  6.         }
  7.         return $title;
  8.     }
  9.     add_filter( 'get_the_archive_title' , 'marstheme_get_the_archive_title', 100, 1);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment