Skip to content

Instantly share code, notes, and snippets.

@rutger1140
Forked from cabans/fix_paged_homepage.php
Created July 3, 2014 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rutger1140/761b47cfdddd6c01de40 to your computer and use it in GitHub Desktop.
Save rutger1140/761b47cfdddd6c01de40 to your computer and use it in GitHub Desktop.
<?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