有没有办法从Publish_POST钩子中获取POST META?

时间:2020-03-18 作者:Shadow

我想要一个发布的文章元,下面是代码,但我没有得到它。如果有人能在这里帮助我,我将不胜感激:

class BarrioBlog {
    function __construct() {
      add_action( \'publish_post\', array( $this, \'on_publish_post\' ), 10, 2 );
    }
    function on_publish_post($post_id, $post) {
       echo \' custom field: \' . get_field(\'channel\', $post_id);
       exit;
    }
}

1 个回复
最合适的回答,由SO网友:Shadow 整理而成

好的,所以我们解决了do_action( \'acf/save_post\', $post_id );