Forum

Thread tagged as: Problem, Blog

Start listing from second post - start 2 doesnt work

In the template I have first blog post special style to, so it's in a separate template, so how do i start the basic list from the second post as currently it's displaying two of blog post count = 1

    <section class="gold-sec">
      <?php
        perch_blog_custom(array(
          'count'      => 1,
          'template'   => 'post_latest.html',
          'sort'       => 'postDateTime',
          'sort-order' => 'DESC',
        ));
      ?>


      <?php
        perch_blog_custom(array(
          'count'      => 4,
          'template'   => 'post_recent_list.html',
          'sort'       => 'postDateTime',
          'sort-order' => 'DESC',
        ));
      ?>
    </section>
Luke Jennings

Luke Jennings 0 points

  • 3 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

'start' => 2,

That doesn't work either, its quite odd

this came up a while ago...

you could try adding 'paginate' => false, as discussed here:

https://forum.grabaperch.com/forum/03-23-2015-skip-first-blog-post

OMG THANK YOU