Skip to content

Instantly share code, notes, and snippets.

View sublayerio's full-sized avatar
Working on the next best thing.

sublayerio sublayerio

Working on the next best thing.
View GitHub Profile
@sublayerio
sublayerio / gist:3b75983cd2176eb32fc7d388e92a5545
Created June 25, 2020 21:08
WP REST Route - Add all terms route
class all_terms
{
public function __construct()
{
$version = '2';
$namespace = 'wp/v' . $version;
$base = 'all-terms';
register_rest_route($namespace, '/' . $base, array(
'methods' => 'GET',
'callback' => array($this, 'get_all_terms'),