0

我想在其他 div 中显示帖子的图像,然后是内容的图像。

我的意思是这样的。

<div class="latest-posts">
    <div class="latest-posts-info">
        <div class="title"><h1>HERE IS TITLE<h1></div>
        <div class="text">HERE IS CONTENT</div>
        <a href="#" class="read-more">Read more...</a>
        <div class="clear"></div>
    </div>
    <div class="latest-posts-img">HERE I WANT THE IMAGE</div>
    <div class="clear"></div>
</div>

在 wp admin 中添加帖子时,我注意到它是显示图像 IN 内容的唯一方法。

谢谢

4

2 回答 2

0

看看这个页面:http ://codex.wordpress.org/Function_Reference/the_post_thumbnail

<div class="latest-posts-img"> <?php the_post_thumbnail( $size, $attr ); ?> </div>
于 2013-08-28T10:28:48.710 回答
0

您可以尝试使用此功能为这篇文章添加自定义模板:http: //codex.wordpress.org/Function_Reference/wp_get_attachment_image

于 2013-08-28T10:05:33.697 回答