Created
April 11, 2017 09:22
-
-
Save ScarletPonytail/a819e87cf85eccbbdc4931267f02cb8e to your computer and use it in GitHub Desktop.
WordPress - Blog only showing particular category
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
// Blog only showing particular category | |
function my_home_category( $query ) { | |
if ( $query->is_home() && $query->is_main_query() ) { | |
$query->set( 'cat', '7'); } } | |
add_action( 'pre_get_posts', 'my_home_category' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment