从钩子publish_post

时间:2019-09-13 10:26:10

标签: php wordpress field advanced-custom-fields

我正在尝试从钩子publish_post上的ACF中获取一些数据,但是每次我都得到一个空值。

我认为我当时尚未初始化ACF,但是我需要publish_post挂钩上来自ACF的信息。

add_action('publish_post', 'index_post_solr');

function index_post_solr($id){
    $post = get_post($id);

    $var = get_field('post_description', $post->ID)

}

0 个答案:

没有答案