• Skip to main content
  • Skip to primary sidebar

WordPress, Genesis Framework and Storefront customization tutorials

  • Archive
    • Free
    • Premium
  • Blog
  • About
  • Contact
  • Newsletter
  • Membership
  • Login
Home ยป Custom Post Type with Pagination in Genesis

Custom Post Type with Pagination in Genesis

Genesis CPT pagination

Do You want to create a Custom Post Type loop with the Genesis core pagination? In this post I’m gonna show You how to do it.

1) Create a Custom Post Type and add some posts to it

You can create a Custom Post Type with code, or You can use a plugin like Custom Post Type UI to do it.

pagination-01

2) Create a new page named Pagination and leave it blank

pagination-02

3) Create a genesis template file named page-pagination.php and place this code into it

If You set the slug of the previous created page after the file name page.php -> page-pagination.php, You don’t need to specify the Template name: Pagination right after the opening php tag.

<?php
// =========================================================================
// CUSTOM POST TYPE WITH PAGINATION
// =========================================================================
function custom_loop_with_pagination() {
	global $post;

	$args = array(
		'post_type'      => 'books',  //---YOUR CUSTOM POST TYPE
		'posts_per_page' => 4,        //---SET HOW MANY POSTS MUST BE SHOWN ON ONE PAGE
		'paged'          => get_query_var( 'paged' )
	);

	global $wp_query;
	$wp_query = new WP_Query( $args );

	if ( have_posts() ) : 
		while ( have_posts() ) : the_post(); ?>
            
            <article>
                <h2><?php the_title(); ?></h2>
                <?php the_excerpt(); ?>
			</article>

		<?php endwhile;
		do_action( 'genesis_after_endwhile' );
	endif;

	wp_reset_query();
}
add_action( 'genesis_loop', 'custom_loop_with_pagination' );
remove_action( 'genesis_loop', 'genesis_do_loop' );


genesis();

4) The result will be look like this

pagination

Filed Under: Free Tagged With: Genesis

About Gabor Flamich

I'm a web developer and designer based in Budapest, Hungary. In recent years, I've documented hundreds of solutions I came across during development. This site is an archive for useful code snippets on WordPress, Genesis Framework and WooCommerce. If You have any questions related to WordPress development, get in touch!

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Gabor Flamich

Hi! I'm Gabor.
I write tutorials on WordPress and WooCommerce.

MacBook

12 Essential Snippets for Genesis Developers

Subscribe to my Newsletter to view my basic collection of Genesis snippets that I use for my projects!

Sign Up for Free
  • Facebook
  • GitHub
  • Instagram
  • LinkedIn
  • Twitter
  • YouTube
UpdraftPlus Premium

Tags

ACF Ajax Analytics API Bootstrap Breadcrumb category CPT CSS fetch Genesis Google Maps Gutenberg HTML Isotope JavaScript jQuery loop Map Menu Parallax PHP SASS SEO SQL Storefront SVG tab tag manager tags Taxonomy Tool upsell Webpack Wholesale WooCommerce WordPress WPML

Disclosure: Some of the links in this site are affiliate links. I will be paid a commission if you use this link to make a purchase.

  • Privacy Policy / Terms of Service
© 2023 WP Flames - All Right Reserved