Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created February 9, 2022 16:13
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 Tmeister/cbda43b8003a3b80a1ec0d400116cc0b to your computer and use it in GitHub Desktop.
Save Tmeister/cbda43b8003a3b80a1ec0d400116cc0b to your computer and use it in GitHub Desktop.
Disable Users endpoint on the WP REST API
<?php
add_filter('rest_endpoints', function ($endpoints) {
if (isset($endpoints['/wp/v2/users'])) {
unset($endpoints['/wp/v2/users']);
}
if (isset($endpoints['/wp/v2/users/(?P<id>[\d]+)'])) {
unset($endpoints['/wp/v2/users/(?P<id>[\d]+)']);
}
return $endpoints;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment