Created
September 27, 2012 09:34
-
-
Save cabans/3793123 to your computer and use it in GitHub Desktop.
Wordpress: Fix for loop pagination with Custom Post Type in homepage
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 | |
//Fix homepage pagination | |
if ( get_query_var('paged') ) { | |
$paged = get_query_var('paged'); | |
} else if ( get_query_var('page') ) { | |
$paged = get_query_var('page'); | |
} else { | |
$paged = 1; | |
} | |
$args = array('post_type' => 'custom_post_type', 'paged' => $paged ); // Args for loop | |
$temp = $wp_query; | |
$wp_query = null; | |
$wp_query = new WP_Query(); | |
$wp_query->query( $args ); | |
while( ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment