【发布时间】:2017-02-18 08:53:10
【问题描述】:
我需要使用 PHP 和 BxSlider 在 Wordpress 中制作一个最近发布的轮播,但我无法让它显示缩略图。
我有最近的帖子,下一个代码:
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> ';
}
wp_reset_query();
?>
此代码显示了上一篇文章并且运行良好,但是如何从媒体库中获取特色图像或缩略图或图像?
【问题讨论】:
标签: php wordpress post thumbnails bxslider