Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created December 22, 2016 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/7fcad29eed213dc454396f9278493dd6 to your computer and use it in GitHub Desktop.
Save braddalton/7fcad29eed213dc454396f9278493dd6 to your computer and use it in GitHub Desktop.
add_action( 'pre_get_posts', 'portfolio_items' );
function portfolio_items( $query ) {
if( $query->is_main_query() && !is_admin() && is_post_type_archive( 'portfolio' ) ) {
$query->set( 'posts_per_page', '12' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment