如何让我的文字显示在我的特色图片的旁边而不是在我的wordpress帖子下面

时间:2013-09-04 05:25:06

标签: wordpress

我正在构建关于test.smartphonesource.org的文章部分,我的特色图片与我的帖子摘录一起出现,但它似乎正在加载图片下方的文章摘录我希望文本出现在图像旁边然后流动自然地在帖子的身体我将缩短摘录并添加一个阅读更多按钮来实现类似于这个网站的效果http://healthcave.com/我似乎无法找到导致这种情况发生的样式或代码是页面的代码调用缩略图图像和内容的模板

<?php get_header(); ?>
<div id="breadcrumb">
  <?php breadcrumbs(); ?>
</div>
<?php include(TEMPLATEPATH."/customrightsidebar.php");?>
<div id="kontenutama">
  <div class="postingan2">
    <?php if (have_posts()) : while (have_posts()) : the_post();?>
    <h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    <?php if (function_exists('has_post_thumbnail') && has_post_thumbnail()) the_post_thumbnail(); 
    the_content(); ?>
    <?php endwhile; else: ?>
      <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
    <br style="clear:both;">
  </div>
</div>
<br style="clear:both">
<div style="clear:both"></div>
<?php get_footer()?>

任何帮助解决这个问题将非常感谢,谢谢=)

0 个答案:

没有答案