我制作了一个应用程序,它使用 Wordpress REST API 来获取数据,用户可以操作数据并从应用程序添加他们自己的帖子。
该应用程序是用 AngularJS 编写的,并使用 http.post 方法添加帖子和 http.put 更新现有帖子。我们正在使用使用 Pods 插件制作的自定义帖子。
我试图找到一个动作钩子,只要用户向 REST API 发出 http.post 或 http.put 请求,它就会触发。
到目前为止,我尝试过:
function on_all_status_transitions( $new_status, $old_status, $post ) {
if ( $new_status != $old_status ) {
// A function to perform actions any time any post changes status.
}
}
add_action( 'transition_post_status', 'on_all_status_transitions', 10, 3 );
并且:add_action(save_post)
提前致谢!