Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 23, 2016 14:08
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 billerickson/2000faa29e1ad8e9f74d to your computer and use it in GitHub Desktop.
Save billerickson/2000faa29e1ad8e9f74d to your computer and use it in GitHub Desktop.
<?php
/**
* Portfolio Query
*
*/
function be_portfolio_query( $query ) {
if( $query->is_main_query() && ! is_admin() && $query->is_post_type_archive( 'portfolio' ) ) {
$query->set( 'posts_per_page', 12 );
}
}
add_action( 'pre_get_posts', 'be_portfolio_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment