您可以使用“admin\\u post\\u thumbnail\\u html”。下面的简单函数将在您设置post featured image buut时返回的图像中附加“这是一幅可爱的图像”,因为$content只是一个HTML字符串,您可以以任何方式对其进行操作。
add_filter( \'admin_post_thumbnail_html\', \'my_image_selected\', 10, 2 );
function my_image_selected( $content, $post_id ) {
return $content . \'This is a lovely image\';
}