Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * Filter search selection labels
- *
- * @param array $post_types
- *
- */
- add_filter( 'streamtube/searchform/post_types', function( $post_types ){
- if( array_key_exists( 'video', $post_types ) ){
- $post_types['video'] = esc_html__( 'Videos', 'streamtube-child' );
- }
- if( array_key_exists( 'post', $post_types ) ){
- $post_types['post'] = esc_html__( 'Stories', 'streamtube-child' );
- }
- return $post_types;
- }, 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement