travis / wordpress
A PHP library for working w/ the Wordpress API plugin.
Installs: 1 602
Dependents: 0
Suggesters: 0
Security: 0
Stars: 77
Watchers: 6
Forks: 19
Open Issues: 0
Requires
- php: >=5.3.0
- travis/ex: *
This package is not auto-updated.
Last update: 2024-11-19 17:11:17 UTC
README
A PHP library for working w/ the Wordpress API plugin.
Install
Normal install via Composer.
Disable the Public Side of Wordpress
Since you are using the API, you should disable the public side of your Wordpress installation. One way to do that is to open the index.php
file in your Wordpress directory and add this code to the top:
if (!isset($_GET['json'])) die();
Usage
Send a request by passing an endpoint, controller, method, and params:
use Travis\Wordpress; // set endpoint $endpoint = 'http://yourwordpress.com/'; // ending slash is important // get a page $page = Wordpress::run($endpoint, 'core', 'get_page', [ 'post_type' => 'page', 'slug' => 'about', )); // get a post $post = Wordpress::run($endpoint, 'core', 'get_post', [ 'post_type' => 'post', 'id' => 100, )); // get recent posts $posts = Wordpress::run($endpoint, 'core', 'get_recent_posts', [ 'post_type' => 'post', 'count' => 10, 'page' => 1, ));
See the documentation for a full list of available methods.