Skip to content

Instantly share code, notes, and snippets.

@guillaumemolter
Last active November 11, 2015 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guillaumemolter/53c9a6fb8610beec19a5 to your computer and use it in GitHub Desktop.
Save guillaumemolter/53c9a6fb8610beec19a5 to your computer and use it in GitHub Desktop.
Disable WordPress default routes and endpoints REST API V1
<?php
function remove_wp_endpoints($default_routes){
$new_routes["/"] = $default_routes["/"];
return $new_routes;
}
add_filter('json_endpoints', 'remove_wp_endpoints', 20, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment