Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Remove Author name from search results
- */
- add_filter( 'streamtube/archive/video/query_args', function( $args ){
- if( is_main_query() && is_search() ){
- $args['show_author_name'] = false;
- }
- return $args;
- }, 10, 2 );
Add Comment
Please, Sign In to add comment