phpface

Untitled

Apr 14th, 2022 (edited)
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. /**
  2.  * Remove Author name from search results
  3.  */
  4. add_filter( 'streamtube/archive/video/query_args', function( $args ){
  5.     if( is_main_query() && is_search() ){
  6.         $args['show_author_name'] = false;
  7.     }
  8.     return $args;
  9. }, 10, 2 );
Add Comment
Please, Sign In to add comment