您如何接收新保存的帖子的最新永久链接或条款?

时间:2020-02-28 作者:Mark

使用古腾堡块编辑器时,用于保存帖子的常规挂钩与经典编辑器的行为不同。

  • pre_post_update
  • save_post
  • wp_insert_postsave_post-钩住$permalink 以及$categoriesnot 返回新值,但返回旧值。这不是我所期望的经典编辑器的行为。

    add_action( \'save_post\', \'custom_save_post\', 10, 3 );
    
    function custom_save_post( $post_id, $post, $update ) 
    {
      $permalink = get_permalink( $post_id ); 
      $categories = get_the_terms( $post_id, \'category\' );
    }
    
    如何使其工作,以便检索更新前的永久链接和更新后的永久链接?

1 个回复
SO网友:Mark

使用古腾堡块编辑器时,需要使用不同的挂钩来获得预期的行为。

学分:@SallyCJ