Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
492 views
in Technique[技术] by (71.8m points)

php - Creating custom endpoints Wordpress

I am having trouble on creating custom endpoints to extend my Wordpress application.

After setting up the WordPress module, I can access the json data through the link given : http://localhost/wordpress/wp-json/

I tested different endpoints inside the document with link: https://developer.wordpress.org/rest-api/reference/

And now I am trying to create my own endpoints, but after many researched I could only find something like

add_action( 'rest_api_init', 'myplugin_register_routes' );

and then

function myplugin_register_routes() {
  register_rest_route( 'myplugin/v1', 'foo', array(
    'methods'  => WP_REST_Server::READABLE,
     'callback' => 'myplugin_serve_route',
  ));
}


function myplugin_serve_route( WP_REST_Request $request ) {
// Do something with the $request
// Return either a WP_REST_Response or WP_Error object
return $response;
}

But indeed where should I add these things? Also, I researched a lots and see the advanced endpoint controller practice, may anyone give a hand on me? Or I need to create my own plugin?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

All the code goes to theme's functions.php file, or a plugin. After registered a REST route, it can be accessed via this URL:

www.example.com/wp-json/myplugin/v1/foo


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...