有个钩子save_post
, 此处的文档:https://developer.wordpress.org/reference/hooks/save_post/ 这将允许您在保存帖子后运行一些代码。示例如下:
function add_user_after_post_save( $post_id ) {
// add a user?
// move the post to the user?
}
add_action( \'save_post\', \'add_user_after_post_save\' );
不知道为什么您需要在创建帖子之前立即调用挂钩,因为您可以在save\\u post挂钩中执行任何操作,但请提供更多信息。