Created
September 26, 2016 01:10
-
-
Save misterebs/f08bee01f5a995648ac14565c0e12315 to your computer and use it in GitHub Desktop.
Display Main Post by Specific Category in Loop.
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
| ++++++++++++ | |
| 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