mattwilding / laravel-wp-api by mattjwilding

Laravel package for the Wordpress JSON REST API forked from threesquared
2,850
3
2
Package Data
Maintainer Username: mattjwilding
Maintainer Contact: support@swancreative.com (Ben Speakman/Matt Wilding)
Package Create Date: 2017-05-31
Package Last Update: 2022-02-02
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:07:46
Package Statistics
Total Downloads: 2,850
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 9
Total Open Issues: 2

laravel-wp-api

Build Status Latest Stable Version

Laravel 5 package for the Wordpress JSON REST API

Install

Simply add the following line to your composer.json and run install/update:

"mattwilding/laravel-wp-api": "~2.0"

Configuration

You will need to add the service provider and optionally the facade alias to your config/app.php:

'providers' => array(
  Mattwilding\LaravelWpApi\LaravelWpApiServiceProvider::class
)

'aliases' => array(
  'WpApi' => Mattwilding\LaravelWpApi\Facades\WpApi::class
),

And publish the package config files to configure the location of your Wordpress install:

php artisan vendor:publish

Usage

The package provides a simplified interface to some of the existing api methods documented here. You can either use the Facade provided or inject the Mattwilding\LaravelWpApi\WpApi class.

Posts

WpApi::posts($page);

Pages

WpApi::pages($page);

Post

WpApi::post($slug);

WpApi::postId($id);

Categories

WpApi::categories();

Tags

WpApi::tags();

Category posts

WpApi::categoryPosts($slug, $page);

Author posts

WpApi::authorPosts($slug, $page);

Tag posts

WpApi::tagPosts($slug, $page);

Search

WpApi::search($query, $page);

Archive

WpApi::archive($year, $month, $page);