我在wordpress中的function.php中编写了以下代码。
function wptuts_recentpost2($atts, $content=null){
$getpost = get_posts( array('number' => 1, 'offset' => 1) );
$getpost = $getpost[0];
$return = $getpost->post_thumbnail . "<br />" . $getpost->post_title . "<br />" . $getpost->post_excerpt . "…";
$return .= "<br /><a href='" . get_permalink($getpost->ID) . "'><em>read more →</em></a>";
return $return;
}
add_shortcode('newestpost2', 'wptuts_recentpost2');
我应该在这里写什么来显示缩略图?
我尝试添加
$getpost = $get_post->post_thumbnail
但它没有工作...... :(
感谢您的时间!
答案 0 :(得分:2)
您可以使用get_the_post_thumbnail($getpost->ID)
。
请重新阅读手抄本 https://developer.wordpress.org/reference/functions/get_the_post_thumbnail/
这将返回缩略图图像标记。