Skip to content

Instantly share code, notes, and snippets.

@misterebs
Created September 26, 2016 01:10
Show Gist options
  • Select an option

  • Save misterebs/f08bee01f5a995648ac14565c0e12315 to your computer and use it in GitHub Desktop.

Select an option

Save misterebs/f08bee01f5a995648ac14565c0e12315 to your computer and use it in GitHub Desktop.
Display Main Post by Specific Category in Loop.
++++++++++++
Function.php
++++++++++++
// Display Post by Specific Category in Loop
add_action( 'pre_get_posts', function ( $q ) {
if( $q->is_home() && $q->is_main_query() ) {
$q->set( 'posts_per_page', 4 );
$q->set( 'tag_ID', Portfolio );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment