实现这一点的最简单方法是使用Multiple Post Thumbnails plugin. 完成此操作后,请将以下代码段添加到函数文件中:
if (class_exists(\'MultiPostThumbnails\')) {
new MultiPostThumbnails(array(
\'label\' => __(\'Secondary Featured Image\', \'yourtextdomain\')
\'id\' => \'secondary-image\',
\'post_type\' => \'post\'
));
}
这将在您的编辑帖子页面上提供一个框“次要特色图像”。现在,您必须将其放置在主题中,无论您希望在哪里显示次要特征图像,而不是主要特征图像:
if (class_exists(\'MultiPostThumbnails\'))
MultiPostThumbnails::the_post_thumbnail(get_post_type(), \'secondary-image\');
else
the_post_thumbnail(); //fallback in case somebody doesn\'t have the plugin installed