Home › Forums › Support › Blog posts with offset 4 This topic has 3 replies, 2 voices, and was last updated 3 years, 5 months ago by Ying. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts November 7, 2022 at 1:49 pm #2405379 Stefan Hello Support Team, I would like to hide the latest 4 blog posts. How would that be possible? https://stories4brands-2.fairwilly.dev/blog/ Many greetings Stefan November 7, 2022 at 2:37 pm #2405410 YingStaff Customer Support Hi Stefan, Try this PHP snippet: function offset_blog_main_query( $query ) { if ( ! is_admin() && $query->is_main_query() && is_home()) { $query->set( 'offset', 4); } } add_action( 'pre_get_posts', 'offset_blog_main_query' ); Adding PHP: https://docs.generatepress.com/article/adding-php/ November 7, 2022 at 8:04 pm #2405666 Stefan Perfekt! Thank you. November 8, 2022 at 9:54 am #2406755 YingStaff Customer Support No problem 🙂 Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In