这是我在functions.php上的代码,但仍无法在博客的帖子类型中设置为精选图片。
add_action('acf/save_post', 'acf_set_featured_image');
function acf_set_featured_image($post_id){
$value = get_field('daily_selfie', $post_id);
if($value != ''){
add_post_meta($post_id, '_thumbnail_id', $value);
}
return $value;
}