要在任意位置显示特定页面/帖子的特色图像,请执行以下操作:
$the_id = 4; // The Page or post ID
echo wp_get_attachment_url( get_post_thumbnail_id($the_id, \'thumbnail\') );
希望它能起作用,如果不起作用,试试这个:
$args = array(\'page_id => 4\');
$featured_image = get_posts($args);
foreach($featured_image as $image) : setup_postdata($image);
echo the_post_thumbnail();
endforeach;
wp_reset_postdata();