Advertisement
phpface

Untitled

Apr 7th, 2022
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. $term = get_queried_object();
  2.  
  3. the_widget( 'Streamtube_Core_Widget_Posts', array(
  4.     'post_type'         =>  'video',
  5.     'post_status'       =>  'publish',
  6.     'posts_per_page'    =>  3,
  7.     'orderby'           =>  'post_view',
  8.     'tax_query'         =>  array(
  9.         array(
  10.             'taxonomy'  =>  $term->taxonomy,
  11.             'field'     =>  'term_id',
  12.             'terms'     =>  array( $term->parent )
  13.         )
  14.     )
  15. ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement