geilt

Untitled

Jun 20th, 2014
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. global $wp_query;
  2. $args = array_merge( $wp_query->query_vars,
  3. array(
  4.     'post_type' => 'product',
  5.     'tax_query' => array(
  6.         array(
  7.             'taxonomy' => 'sort',
  8.             'field' => 'slug',
  9.             'terms' => $_GET['style']
  10.         )
  11.     )
  12.  ) );
  13.  
  14. query_posts( $args );
Advertisement
Add Comment
Please, Sign In to add comment