Skip to content

Instantly share code, notes, and snippets.

@nixonmedia
Created February 18, 2018 00:30
Show Gist options
  • Save nixonmedia/dba18dae8c279993d92650023de930c6 to your computer and use it in GitHub Desktop.
Save nixonmedia/dba18dae8c279993d92650023de930c6 to your computer and use it in GitHub Desktop.
<?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