Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- global $wp_query;
- $args = array_merge( $wp_query->query_vars,
- array(
- 'tax_query' => array(
- array(
- 'taxonomy' => 'sort',
- 'field' => 'slug',
- 'terms' => $_GET['style']
- )
- )
- ) );
- query_posts( $args );
Advertisement
Add Comment
Please, Sign In to add comment