我正在处理wordpress帖子,我正在尝试显示/获取帖子缩略图。我尝试过很多本来应该工作但不适合我的东西......这是代码:
add_theme_support( 'post-thumbnails', array( 'post', 'page' ) );
if ( has_post_thumbnail() ) {
echo ('there is a thumbnail');
echo get_the_post_thumbnail(get_the_ID(), "thumbnail"); // nothing
echo get_the_post_thumbnail(); // nothing
echo var_dump(get_the_post_thumbnail(get_the_ID(), "thumbnail")); //string '' (length=0)
echo var_dump(get_the_post_thumbnail()); //string '' (length=0)
the_post_thumbnail('thumbnail'); // nothing
the_post_thumbnail(); // nothing
}
else {
echo ('there is no thumbnail');
}
首先我认为我的帖子没有缩略图,但我的第一个echo
返回there is a thumbnail
,其余的都没有返回任何内容......所以我不明白......什么不见了?
由于