Advertisement
shelob9

Untitled

Jul 24th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. protected function query_args( $type = '', $page = 1 ){
  2. $args = [
  3. 'post_type' => $this->post_type,
  4. 'paged' => $page,
  5. ];
  6.  
  7. if( ! empty( $page ) ){
  8. $args ['tax_query' ] =[
  9. [
  10. 'taxonomy' => 'product_type',
  11. 'field' => 'slug',
  12. 'terms' => $type,
  13. ],
  14. ];
  15. }
  16.  
  17. return $args;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement