Created
August 2, 2017 07:18
-
-
Save moskalukigor/1fda8cb664b13ee07fc366b71d009b01 to your computer and use it in GitHub Desktop.
Fix pagination posts_per_page GET['ppp']
This file contains hidden or 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
| 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