• I want to limit the number of comments shown below the post to 20 and place a link to a page with all comments.

    For posts it works like this:

    <?php
    $posts = get_posts('numberposts=64');
    foreach($posts as $post) :
    setup_postdata($post);
    ?>

    But how for comments? Can anybody help?

The topic ‘offset for comments’ is closed to new replies.