Advertisement
phpface

Untitled

Jan 23rd, 2023
1,252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. /**
  2.  *
  3.  * Filter Video Post Type Archive Title
  4.  *
  5.  */
  6.  
  7. add_filter( 'get_the_archive_title', function( $title, $original_title, $prefix ){
  8.  
  9.     if( is_post_type_archive( 'video' ) ){
  10.         $title = esc_html__( 'Videos', 'streamtube-child' );
  11.     }
  12.  
  13.     return $title;
  14.  
  15. }, 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement