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.