Archived topic
Blog posts with offset 4
3 replies · Started by Stefan on November 7, 2022
Viewing posts 1–4 of 4
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
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/
Perfekt! Thank you.
No problem :)
This archived topic is closed to new replies.