Home › Forums › Support › Where is the loop? This topic has 1 reply, 2 voices, and was last updated 8 years, 7 months ago by Tom. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts March 2, 2015 at 5:57 am #81849 Pete I can’t find the loop? Do you use something like this? <?php $query = new WP_Query( array('orderby' => 'date', 'posts_per_page' => '5', 'post_type' => 'post') ); if ( $query->have_posts() ) : ?> <?php while ( $query->have_posts() ) : $query->the_post(); ?> March 2, 2015 at 1:50 pm #81946 TomLead Developer Lead Developer GeneratePress doesn’t use any custom queries at all – just default WordPress functionality. You can find the default while statement in the index.php file (which handles the blog). Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In