Created
February 18, 2018 00:30
-
-
Save nixonmedia/dba18dae8c279993d92650023de930c6 to your computer and use it in GitHub Desktop.
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
<?php | |
function custom_posts_per_page( $query ) { | |
if ( $query->is_archive('success-story') ) { | |
set_query_var('posts_per_page', 9); | |
} | |
} | |
add_action( 'pre_get_posts', 'custom_posts_per_page' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment