Last active
April 21, 2017 15:42
-
-
Save petrozavodsky/f3a39b78539bc8750f56566a55fb6110 to your computer and use it in GitHub Desktop.
paged gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'posts_per_page' => 5, | |
'post_type' => 'room', | |
'order' => 'ASC', | |
'tax_query' => array( | |
array( | |
'taxonomy' => 'post_tag', | |
'field' => 'slug', | |
'terms' => '' | |
) | |
) | |
); | |
if ( get_query_var( 'paged' ) > 1 ) { | |
$args['tax_query'] = array( | |
array( | |
'taxonomy' => 'post_tag', | |
'field' => 'slug', | |
'terms' => 'tutu' | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment