Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * Filter Video Post Type Archive Title
- *
- */
- add_filter( 'get_the_archive_title', function( $title, $original_title, $prefix ){
- if( is_post_type_archive( 'video' ) ){
- $title = esc_html__( 'Videos', 'streamtube-child' );
- }
- return $title;
- }, 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement