Created
April 5, 2012 22:18
-
-
Save Viper007Bond/2314628 to your computer and use it in GitHub Desktop.
WordPress: Get all posts but only so many at a time
This file contains 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 | |
$query_args = array( | |
'foo' => 'bar', | |
'apple' => 'orange', | |
'posts_per_page' => 50, | |
'offset' => 0, | |
); | |
$some_posts = new WP_Query( $query_args ); | |
while ( $some_posts->have_posts() ) { | |
/* | |
* Do some stuff here | |
*/ | |
// Get more posts | |
$query_args['offset'] = $query_args['offset'] + $query_args['posts_per_page']; | |
$some_posts = new WP_Query( $query_args ); | |
} |
Don't forget to call wp_reset_postdata() after running a subquery
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-190010289-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-190010289-1');
</script>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Love this!