Wordpress自定义页面模板和WP-API

时间:2016-01-16 14:19:04

标签: php wordpress wp-api

我的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执行以下步骤:

  1. 从页面表单(POST / GET)接收并设置用户输入的变量。
  2. 从数据库中提取数据。
  3. 做一些计算和更改。
  4. 为用户创建页面。
  5. 我想将 angular.js 与WP-API插件集成。该插件只是从数据库中提取原始数据(步骤2)并将其发送到前端(步骤4)。因此,未作为页面使用的页面和模板未重新加载。

    我想首先将数据传递给我的php类(步骤3),然后将更改的数据传递给WP-API。

    WP-API中是否有任何函数可以调用我的PHP文件或函数?

    任何建议,样品或链接都将受到高度赞赏。

    感谢。

1 个答案:

答案 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;
}

因此,您的通话将是gethttp://yourproject.com/wp-json/custom-endpoint/v2/author/1