Post overlap

I noticed that half the posts on page 2 of the blog list are repeats. If this is WordPress, you can add offset to your args for more control over that.

$args = array(
    'post_type' => 'post',
    'post_status' => array( 'publish' ),
    'orderby' => 'date',
    'order' => 'DESC',
    'offset' => 18
);
2 Likes

That whole theme is due for a rewrite… soon.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.