My Wordpress site uses custom template pages like this one:
<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");
...
My custom page project_costs.php
performing the steps :
- Receive and set user entered vars from page forms (POST/GET).
- Pull data from database.
- Do some calculations and changes.
- Creates page for user.
I want to integrate angular.js with the WP-API plugin. The plugin just pulls raw data from database (step 2) and sends it to front end (step 4). So pages and templates not in use as page didn't reload.
I want to pass data to my php class first (step 3), then pass changed data to WP-API.
Is there any function in WP-API to call my PHP file or function?
Any advice, samples or links would be highly appreciated.
Thanks.