Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/245.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如何在Wordpress中制作最近的邮件旋转木马_Php_Wordpress_Post_Thumbnails_Bxslider - Fatal编程技术网

Php 如何在Wordpress中制作最近的邮件旋转木马

Php 如何在Wordpress中制作最近的邮件旋转木马,php,wordpress,post,thumbnails,bxslider,Php,Wordpress,Post,Thumbnails,Bxslider,我需要用PHP和BxSlider在Wordpress中制作一个RecentPost转盘,但我无法让它显示缩略图 我最近发了一篇文章,下面是代码: <?php $recent_posts = wp_get_recent_posts(); foreach( $recent_posts as $recent ){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' .

我需要用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();
    ?>

这段代码显示了最后一篇文章,非常有效,但是如何从媒体库中获取特色图像、缩略图或图像呢

你试过这些吗

get_the_post_thumbnail( $post_id, 'thumbnail' );      // Thumbnail (Note: different to Post Thumbnail)
get_the_post_thumbnail( $post_id, 'medium' );         // Medium resolution
get_the_post_thumbnail( $post_id, 'large' );          // Large resolution
get_the_post_thumbnail( $post_id, 'full' );           // Original resolution

还是这个

//Default WordPress
the_post_thumbnail( 'thumbnail' );     // Thumbnail (150 x 150 hard cropped)
the_post_thumbnail( 'medium' );        // Medium resolution (300 x 300 max height 300px)
the_post_thumbnail( 'medium_large' );  // Medium Large (added in WP 4.4) resolution (768 x 0 infinite height)
the_post_thumbnail( 'large' );         // Large resolution (1024 x 1024 max height 1024px)
the_post_thumbnail( 'full' );          // Full resolution (original size uploaded)
试试这个-

<?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();
?>