PHP code example of martianatwork / laravel-wp-api

1. Go to this page and download the library: Download martianatwork/laravel-wp-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

martianatwork / laravel-wp-api example snippets


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

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

WpApi::posts($page);


WpApi::pages($page);


WpApi::post($slug);


WpApi::postId($id);


WpApi::categories();


WpApi::tags();


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


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


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


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


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