Home › Forums › Support › How can i only show posts from 1 category on homepage? This topic has 1 reply, 2 voices, and was last updated 3 years, 5 months ago by David. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts November 19, 2022 at 5:58 pm #2423526 Daniel Are there any settings that I can change? November 20, 2022 at 5:54 am #2423931 DavidStaff Customer Support Hi there, you can use a PHP Snippet like so: add_action ('pre_get_posts', function($query) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '66'); } }); Change the 66 to the ID of the category you want to display. Adding PHP: https://docs.generatepress.com/article/adding-php/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In