Skip to content

Instantly share code, notes, and snippets.

@tlovett1
Created February 24, 2014 19:58
Show Gist options
  • Save tlovett1/9195793 to your computer and use it in GitHub Desktop.
Save tlovett1/9195793 to your computer and use it in GitHub Desktop.
<?php
/**
* Class Vistage_Chair_API sets up routes and endpoints of CPT API
*/
class Vistage_Chair_API extends WP_JSON_CustomPostType {
protected $base = '/chair-profiles';
protected $type = 'vistage_chair';
public function registerRoutes( $routes ) {
$routes = parent::registerRoutes( $routes );
return $routes;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment