Advertisement
maxworkingwell

Filter by post type for Duong

Aug 27th, 2022
973
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. // 6. Adds search by post type for the Dramas without Subtitles view
  2. add_filter( 'wpv_filter_query', 'post_types_filter_func', 10, 3 );
  3. function post_types_filter_func( $query_args, $settings, $view_id ) {
  4. $view_ids_array = array(70693);
  5. if ( in_array($view_id, $view_ids_array) && isset($_GET['wpv-post-type'][0]) && !empty($_GET['wpv-post-type'][0]) ) {
  6. $query_args['post_type'] = $_GET['wpv-post-type'][0];
  7. }
  8. return $query_args;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement