14

为了我自己的理智,我正在尝试为一个看起来像这样的 ajax api 创建一个路由:

/api/<action>

我希望 wordpress 处理这条路线并使用do_action. wordpress 是否给了我一个实现这个的钩子?哪里有好地方?

4

2 回答 2

17

你必须使用add_rewrite_rule

就像是:

add_action('init', 'theme_functionality_urls');

function theme_functionality_urls() {

  /* Order section by fb likes */
  add_rewrite_rule(
    '^tus-fotos/mas-votadas/page/(\d)?',
    'index.php?post_type=usercontent&orderby=fb_likes&paged=$matches[1]',
    'top'
  );
  add_rewrite_rule(
    '^tus-fotos/mas-votadas?',
    'index.php?post_type=usercontent&orderby=fb_likes',
    'top'
  );

}

这会创建/tus-fotos/mas-votadasand /tus-fotos/mas-votadas/page/{number},这会更改我在 pre_get_posts 过滤器中处理的自定义查询变量的 orderby 查询变量。

也可以使用query_vars过滤器添加新变量并将其添加到重写规则中。

add_filter('query_vars', 'custom_query_vars');
add_action('init', 'theme_functionality_urls');

function custom_query_vars($vars){
  $vars[] = 'api_action';
  return $vars;
}

function theme_functionality_urls() {

  add_rewrite_rule(
    '^api/(\w)?',
    'index.php?api_action=$matches[1]',
    'top'
  );

}

然后,处理自定义请求:

add_action('parse_request', 'custom_requests');
function custom_requests ( $wp ) { 

  $valid_actions = array('action1', 'action2');

  if(
    !empty($wp->query_vars['api_action']) &&
    in_array($wp->query_vars['api_action'], $valid_actions) 
  ) {

    // do something here

  }

}

请记住仅在需要时/wp-admin/options-permalink.php通过访问或调用flush_rewrite_rules 来刷新重写规则,因为这不是一个简单的过程。

于 2013-05-31T18:46:56.330 回答
1

好像您正在寻找 wordpress json-api插件,这是我使用过的构建良好的插件之一,也很容易扩展。祝你好运。

于 2013-05-31T18:00:43.877 回答