Skip to content

Instantly share code, notes, and snippets.

@loorlab
Created July 13, 2015 17:18
Show Gist options
  • Save loorlab/d0c62aba852ea19f01cc to your computer and use it in GitHub Desktop.
Save loorlab/d0c62aba852ea19f01cc to your computer and use it in GitHub Desktop.
Display blog posts on page with navigation on WordPress via https://digwp.com/2013/01/display-blog-posts-on-page-with-navigation/ - Insert into functions.php FIX Error www.site.com/blog/page/2/ Page Not Found On WordPress
<?php
/**
* Config Navigation.
*/
function digwp_filter_pre_get_posts( $query ) {
if ( is_home() && $query->is_main_query() ) {
$query->set( 'posts_per_page', '5' );
}
}
add_action( 'pre_get_posts', 'digwp_filter_pre_get_posts' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment