Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Are these things possible?

Thanks much! Finally got it working the way I want to. For everyone’s reference here’s how to do the separation:

Where the first one is going to go:

<?php

foreach ($posts as $bb_post) : $del_class = post_del_class();

post_text(); // Other variables, etc

array_shift($posts);

break;

endforeach;

?>

Then, where the rest of them are going to appear:

<?php foreach ($posts as $bb_post) : $del_class = post_del_class();

php bb_post_template();

endforeach; ?>

Skip to toolbar