wordpress - 在帖子图片

时间:2015-05-14 08:47:25

标签: php wordpress post

我在wordpress中使用自定义主题。其中一个页面“solutions_page”,显示所有带有“解决方案”类别的帖子,其中包含特色图片,标题和一些文字。

在特色图片的顶部,我需要添加一个带有作者图片的圆圈。

这是我的问题,我不知道在哪里或怎么做。我以为我应该将div位置绝对地放在特色图像上,然后使其成为圆形。但是如果我没有代码中的特色图片,怎么能这样做呢?

这是我的single.php,它没有完成工作,因为我没有看到我的div为图片:

<?php get_header(); ?>

<div class="container">
    <?php
    if (have_posts()) {
        while (have_posts()) {
            the_post();

            if (in_category('solutions')) {
                the_content();
                ?>
              <div class="authorCircle">
                <img src="images/jules.jpg" alt=""/>
              </div>
          <?php
          } else {
              the_content();
          }
      } // end while
  } // end if
  ?>
</div>
  <?php
  get_footer();

所以authorCircle是我希望在帖子内容中看到的div类别“解决方案”。

任何想法我该怎么办?我应该把div放在the_content()吗?

提前谢谢!!

1 个答案:

答案 0 :(得分:0)

请使用此代码,它会在您的代码中显示作者头像。

<?php echo get_avatar( get_the_author_meta('ID'), 60); ?>

在上面的代码中,你想要获得作者ID。