我们可以使用rest_api_init
动作如下:
只需在主题中添加以下代码functions.php
文件
add_action( \'rest_api_init\', function () {
register_rest_route(\'wp/v2\', \'forgot_password\', array(
\'methods\' => array(\'GET\', \'POST\'),
\'callback\' => \'forgot_password\'
));
} );
function forgot_password(){
// YOUR CALLBACK FUNCTION STUFF HERE
}
forgot_password 将定义路由URL地址。
methods 将定义要获取请求参数的方法,如GET 或POST.
callback 将定义在rest api启动时调用的回调函数。