如何在ACF FORM的帖子类型中显示特色图像作为图像字段

时间:2017-09-07 02:07:30

标签: php frontend advanced-custom-fields word

这是我在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;
}

0 个答案:

没有答案