Exclude Most Recent Post From Blog Page
-
Any help correcting my php code to have the most recent blog post excluded from my blog page?
whoischick.com/blog/Original code:
<?php if ($posts) { foreach($posts as $post) { start_wp(); ?>
What I changed it to but isn’t working:
<?php query_posts('offset=1'); ?> <?php if ($posts) { foreach($posts as $post) { start_wp(); ?>
Thanks for the help.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Exclude Most Recent Post From Blog Page’ is closed to new replies.