gpt4 book ai didi

php - 如何在 Wordpress 中制作最近的帖子轮播

转载 作者:搜寻专家 更新时间:2023-10-31 21:52:02 24 4
gpt4 key购买 nike

我需要使用 PHP 和 BxSlider 在 Wordpress 中制作 RecentPost 轮播,但我无法让它显示缩略图。

我有最近的帖子和下一个代码:

    <?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
$args = array(
'numberposts' => 10, //number of post.
'post_type' => 'post',
'post_status' => 'publish'
);
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '">' .get_the_post_thumbnail( $recent["ID"], 'thumbnail' ). $recent["post_title"].'</a> </li> ';
}
wp_reset_query();
?>

关于php - 如何在 Wordpress 中制作最近的帖子轮播,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39949722/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com