WordPress在“ publish_post”钩子中获取标签

时间:2019-10-15 05:42:47

标签: wordpress

发布帖子时,我想在publish_post钩中获取选定的标签。

使用以下代码,我只能获得那些已保存在帖子中的标签。这不适用于新标签。

add_action( 'publish_post', 'post_published_notification', 10, 2 );

function post_published_notification( $ID, $post ) {
    $post_tags = get_the_tags($ID);
    if ( $post_tags ) {
        print_r($post_tags);
    }
}

0 个答案:

没有答案