How to exclude latest x posts from a paginated query?
One way is to use the offset parameter in WP_Query, but it overrides the paged parameter according to the docs. Example formula for an offset with pagination: ‘posts_per_page’ => $posts_per_page, ‘offset’ => ( $paged – 1 ) * $posts_per_page + $offset_per_page, Example: Then for $posts_per_page as 4 and $offset_per_page as 5 we get the post … Read more