Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created July 31, 2012 15:59
Show Gist options
  • Star 41 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save billerickson/3218052 to your computer and use it in GitHub Desktop.
Save billerickson/3218052 to your computer and use it in GitHub Desktop.
Genesis custom loop with pagination
<?php
/* Template Name: Test */
/**
* Genesis custom loop
*/
function be_custom_loop() {
global $post;
// arguments, adjust as needed
$args = array(
'post_type' => 'post',
'posts_per_page' => 1,
'post_status' => 'publish',
'paged' => get_query_var( 'paged' )
);
/*
Overwrite $wp_query with our new query.
The only reason we're doing this is so the pagination functions work,
since they use $wp_query. If pagination wasn't an issue,
use: https://gist.github.com/3218106
*/
global $wp_query;
$wp_query = new WP_Query( $args );
if ( have_posts() ) :
echo '<ul>';
while ( have_posts() ) : the_post();
echo '<li>' . get_the_title() . '</li>';
endwhile;
echo '</ul>';
do_action( 'genesis_after_endwhile' );
endif;
wp_reset_query();
}
add_action( 'genesis_loop', 'be_custom_loop' );
remove_action( 'genesis_loop', 'genesis_do_loop' );
genesis();
@swapnilg
Copy link

Thanks Bill :)

@WebEndevSnippets
Copy link

Thank you Bill!

@craiggrella
Copy link

Bill,

I'm using this snippet in local dev environment with 15 posts on custom post type. Posts per page set to 5.
First page fine. second page fine. Third and final page - 404 error.
Are there any other consideratios I might need for fixing pagination?

@poblabs
Copy link

poblabs commented Aug 10, 2014

It may help someone out there, but on line 13 I made a change on my site for it to use the options set in WordPress Settings > Reading > Blog Pages Show at Most. This way you can update the settings, and have it reflect without changing the code.

'posts_per_page' => get_option('posts_per_page'),

@anythinggraphic
Copy link

Thank you! I was having trouble with this.

@webmatter
Copy link

this one finally worked ... thanks!

@danbru1989
Copy link

danbru1989 commented Jan 27, 2018

Worked when I added genesis_posts_nav(); after the while statement like shown on the blog post: https://www.billerickson.net/code/pagination-in-a-custom-query/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment