要在WordPress中注册新的REST接口,您可以使用register_rest_route函数:
首先,在您的主题或插件的函数.php或主要文件中添加以下代码:
add_action( 'rest_api_init', 'custom_rest_routes' );
function custom_rest_routes() {
register_rest_route(
'your-namespace/v1',
'/your-endpoint/',
array(
'methods' => 'GET',
'callback' => 'custom_rest_callback',
)
);
}
function custom_rest_callback( $request ) {
// handle your custom API logic here
// Example: Return a JSON response
$response = array(
'message' => 'Hello, World!'
);
return new WP_REST_Response( $response, 200 );
}
注意将 “your-namespace” 替换为您自己的命名空间,可以是您的主题或插件名称。而 “your-endpoint” 替换为您想要创建的具体API端点的名称。
接下来,您可以在自定义回调函数 custom_rest_callback
中编写您的自定义API逻辑。在上面的示例中,我们仅仅返回一个包含 “Hello, World!” 消息的JSON响应。您可以在此函数中处理您的自定义逻辑,并根据需要返回不同的响应。
一旦您添加了上述代码,WordPress就会注册您的自定义REST接口。您可以通过调用 https://your-site/wp-json/your-namespace/v1/your-endpoint
来访问它,其中 “your-site” 是您的网站域名,”your-namespace” 和 “your-endpoint” 是您在代码中指定的命名空间和端点。
请确保在更改文件之前备份您的代码。