Page layout messed up and the titles to teasers are showing up in previous teaser. Please see
http://www.pattydooleyrealtor.com/blog/?page_id=102.
Below is the code for my page. Any suggestions? Thanks in advance. You all are the best!
Code:
<?php
/*
Template Name: Featured Listings
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<div class="postarea">
<h5>Featured Properties, Julie Toon Pawley Real Estate Broker, Inc.</h5>
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=279&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
<h1><?php the_title(); ?></h1>
<div class="date">
<?php the_time('F j, Y'); ?> by <?php the_author_posts_link(); ?> · <?php _e("Filed under"); ?> <?php the_category(', ') ?>
</p>
</div>
<?php if( get_post_meta($post->ID, "thumbnail", true) ): ?>
[img]<?php echo get_post_meta($post->ID, [/img]" alt="<?php the_title(); ?>" align="left" hspace="8" /><?php else: ?>
<?php endif; ?>
<?php the_content_limit(350, "[Read More About This Property...]"); ?><div class="clear"></div>
<?php endwhile; ?>
<?php posts_nav_link(); ?></p>
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar.php");?>
</div>
<?php get_footer(); ?>