show only specific category on my Posts Site
-
i only want to show the category news on the news page. what is the best way to do this without a plugin. i have a child theme and would like to solve it via functions. i have already tested several code snippets without success.
for example:
function theme_slug_include_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘cat’, ’19’ );
}
}
add_action( ‘pre_get_posts’, ‘theme_slug_include_category’ );I am grateful for any help,
JessiThe page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘show only specific category on my Posts Site’ is closed to new replies.