我的Wordpress网站使用这样的自定义模板页面:
<php
/*
Template Name : project_costs
/*
get_header ();
// set default vars or user received
require("my_forms.php");
// pull data from db and calculate
require("project_calculation. php");
// create page
require("content. php");
...
我的自定义页面project_costs.php
执行以下步骤:
我想将 angular.js 与WP-API插件集成。该插件只是从数据库中提取原始数据(步骤2)并将其发送到前端(步骤4)。因此,未作为页面使用的页面和模板未重新加载。
我想首先将数据传递给我的php类(步骤3),然后将更改的数据传递给WP-API。
WP-API中是否有任何函数可以调用我的PHP文件或函数?
任何建议,样品或链接都将受到高度赞赏。
感谢。
答案 0 :(得分:3)
所以我正在开发一个庞大的项目,其中包括#WordPress的几个API / Angular替换部件。一个文件是自定义端点 - boilerplate.php。它到目前为止就像一个魅力,但任何输入都会受到赞赏。
只需按照结构使用my_awesome_function
即可返回您喜欢的任何内容。然后,使用来自my_awesome_func。
<?php
/* ------------------------------------------------------------------------ *
A great example of custom endpoints is the PHP in wp-api-menus plugin
* ------------------------------------------------------------------------ */
// hook into rest_api_init and register a new api route
add_action( 'rest_api_init', function () {
register_rest_route(
'custom-endpoint/v2', // namespace
'/author/(?P<id>\d+)', // route
array( // options
'methods' => 'GET',
'callback' => 'my_awesome_func',
// 'args' => array(
// 'context' => array(
// 'default' => 'view',
// ),
// )
)
);
});
function my_awesome_func( $data ) {
$posts = get_posts( array(
'author' => $data['id'],
) );
if ( empty( $posts ) ) {
return null;
}
return $posts[0]->post_title;
}
因此,您的通话将是get
至http://yourproject.com/wp-json/custom-endpoint/v2/author/1