美文网首页
WordPress 自定义api

WordPress 自定义api

作者: lajunta | 来源:发表于2021-03-22 20:48 被阅读0次

WordPress 中 自定义 rest api
在wp-content =>themes => 使用中的主题 =>functions.php 中 加入相关的代码

function hello( $data ) {
  return array(array("hello"=>"asfd","world"=>"dsfadsf"));
}

add_action( 'rest_api_init', function () {
  register_rest_route( 'iaa', '/news', array(
    'methods' => 'GET',
    'callback' => 'hello',
  ) );
} );

就可以访问 /wp-json/iaa/news

相关文章

网友评论

      本文标题:WordPress 自定义api

      本文链接:https://www.haomeiwen.com/subject/nqircltx.html