Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ```php
  2.  
  3. add_filter('rest_endpoints', function($endpoints) {
  4. if ( isset( $endpoints['/wp/v2/users'] ) ) {
  5. unset( $endpoints['/wp/v2/users'] );
  6. }
  7. return $endpoints;
  8. });
  9.  
  10. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement