Hi, I’ve got a channel with 14 entries and I need to separate them into to columns of 7. My problem is how to do this. first I tried with PHP:
<?php $count++; if($count==7) echo "</ul><ul>";?>I put this inside the {channel:entries} but the count doesn’t go up; it remains “1”.
Then I made to separated entries limiting them to print 7 entries. But of course they printed the first 7 entries twice. I think the best way to do it is using EE. So, I need to know how can I print the second row starting with the first of the last 7 entries. I assume that you can do it by specifying the entry_id; but I prefer to do it without using the entry_id because this may change. If it’s not possible to do it using EE then PHP is just fine. Any solution will be very welcome.
Thanks in advance