Skip to content

Instantly share code, notes, and snippets.

@moskalukigor
Created August 2, 2017 07:18
Show Gist options
  • Select an option

  • Save moskalukigor/1fda8cb664b13ee07fc366b71d009b01 to your computer and use it in GitHub Desktop.

Select an option

Save moskalukigor/1fda8cb664b13ee07fc366b71d009b01 to your computer and use it in GitHub Desktop.
Fix pagination posts_per_page GET['ppp']
add_action('pre_get_posts','func_pre_get_posts');
function func_pre_get_posts( $query ) {
if( $query->is_main_query() && !$query->is_feed() && !is_admin() && $_GET['ppp']) {
$query->set( 'posts_per_page', $_GET['ppp'] );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment