这很古老,但这是谷歌在这个主题下的第一次搜索。
我解决这个问题的方法是创建一个新页面。不要将其命名为与存档页相同的名称(Wordpress不喜欢与存档页同名的页面,这会导致问题),您可以将其命名为其他任何名称。设置特色图像,然后使用以下代码在存档模板上调用:
$post_id = 8;
$queried_post = get_post($post_id);
$src = wp_get_attachment_image_src(get_post_thumbnail_id($queried_post->ID), \'\') ;
$thumb_id = get_post_thumbnail_id($post_id);
?>
<img src="<?php echo $src[0]; ?>" class="img-responsive" />
要分解它:
$post_id = 8;
是新页面的id号。
$src = wp_get_attachment_image_src(get_post_thumbnail_id($queried_post->ID), \'\') ;
查找附加到此页面的特色图像
<img src="<?php echo $src[0]; ?>" class="img-responsive" />
回显新页面中的特色图像。