<?php $posts = get_posts('numberposts=2&offset=0'); foreach ($posts as $post) : start_wp(); ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" class="footernews-thumb"> <?php if ( has_post_thumbnail()) : ?> <?php the_post_thumbnail(thumbnail); ?> <?php endif; ?> </a> <h2 class="footernews-title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <p class="footernews-preview"><?php the_content_rss('', TRUE, '', 20); ?></p> <?php endforeach; ?> <?php $posts = get_posts('numberposts=3&offset=1'); foreach ($posts as $post) : start_wp(); ?> <h2 class="footernews-title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <?php endforeach; ?>