如上图 旁边有个图片的显示区,问怎么显示,下面是这个区域的代码 咋改
<div class="slider-wrap">
<div id="slider1" class="csw">
<div class="panelContainer">
<?php
$my_query = new WP_Query('category_name=Featured&showposts=4');
while ($my_query->have_posts()) : $my_query->the_post();
?>
<div class="panel">
<div class="wrapper">
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php $image = get_post_meta($post->ID, 'post_image', true); ?><a class="postImage" href="<?php the_permalink() ?>"><img src="<?php echo $image; ?>" alt="<?php the_title(); ?>" /></a>
<div class="postHead">
<h2 class="headline"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<h4 class="date"><?php the_time('F jS, Y') ?></h4>
</div>
<div class="entry">
<?php the_content_rss('', TRUE, '', 70); ?>
</div>
<div class="postBottom clearfix">
<h4 class="commentnum"><?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></h4>
<h4 class="more"><a href="<?php the_permalink() ?>" title="Read More">Read More...</a></h4>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>