Skip to content

Instantly share code, notes, and snippets.

@beatwiz
Created March 2, 2023 09:05
Show Gist options
  • Save beatwiz/70b6dbcc9ec68883535b9c6984dfa5f9 to your computer and use it in GitHub Desktop.
Save beatwiz/70b6dbcc9ec68883535b9c6984dfa5f9 to your computer and use it in GitHub Desktop.
Block WP JSON API Get Users
<?php
/**
* Block Users JSON API
*/
add_filter('rest_endpoints', function ($endpoints) {
if (isset($endpoints['/wp/v2/users'])) {
unset($endpoints['/wp/v2/users']);
}
return $endpoints;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment