geilt

Untitled

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