[wordpress] カスタムフィールドの画像をアイキャッチ画像に登録する方法
下記img1は適宜カスタムフィールドのフィールド名に変更すること
/*カスタムフィールド(img1)をサムネイルに */
function acf_set_featured_image( $value, $post_id, $field ) {
if($value != '') {
add_post_meta($post_id, '_thumbnail_id', $value);
}
return $value;
}
add_filter('acf/update_value/name=img1', 'acf_set_featured_image', 10, 3);