【发布时间】:2013-05-21 14:12:56
【问题描述】:
如何在我最近发布的自定义小部件中显示每个帖子中的图像的小缩略图或特色图像
这是我的代码:
<?php
include($_SERVER['DOCUMENT_ROOT'] . $root . 'blog/wp-load.php');
$recent_posts = wp_get_recent_posts(array(
'numberposts' => 3
));
?>
<h3 class="divider">Recent Blog Posts</h3>
<ul class="listing">
<?php foreach($recent_posts as $post) { ?>
<li><a href="<?php echo get_permalink($post['ID']) ?>">
<div><?php echo $post['post_title'] ?></div></a></li>
<?php } ?>
</ul>
【问题讨论】:
标签: wordpress widget thumbnails posts