Skip to content

Instantly share code, notes, and snippets.

@rob-gordon
Created October 19, 2017 14:34
Show Gist options
  • Select an option

  • Save rob-gordon/32510faf33e2f7ac286fe4ab0a4a6602 to your computer and use it in GitHub Desktop.

Select an option

Save rob-gordon/32510faf33e2f7ac286fe4ab0a4a6602 to your computer and use it in GitHub Desktop.
Quick custom wp rest route
/* Rest Routes */
function theme_data() {
$obj = [];
$obj["site_url"] = get_site_url();
return $obj;
}
add_action( 'rest_api_init', function () {
register_rest_route( 'theme', 'data', array(
'methods' => 'GET',
'callback' => 'theme_data',
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment