你的问题并不完全清楚,但我想你的新主题是以正常方式使用特色图片,这会在旧帖子上留下空白的特色图片,因为它们存储在自定义字段中。您可以在get_the_post_thumbnail
. 因为我不知道自定义字段是如何生成的,所以我无法给出完整的代码,但它看起来是这样的:
add_filter (\'post_thumbnail_html\',\'wpse303106_custom_featured_image\',10,5);
function wpse303106_custom_featured_image ($html, $post->ID, $post_thumbnail_id, $size, $attr) {
if (\'\' == $html && test-for-existence-of-custom-field) {
$html = ... assemble from custom field ...
}
return $html;
}