Skip to content

Instantly share code, notes, and snippets.

@naomicbush
Created February 17, 2017 16:36
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 naomicbush/1e730e2e3c2467681ab657a188006480 to your computer and use it in GitHub Desktop.
Save naomicbush/1e730e2e3c2467681ab657a188006480 to your computer and use it in GitHub Desktop.
Control WordPress REST API Access
<?php
/*
Plugin Name: WP REST API Access
Plugin URI: https://naomicbush.com
Description: Control WordPress REST API Access
Version: 1.0.0
Author: Naomi C. Bush
Author URI: https://naomicbush.com
*/
/**
* Why?
*
* https://wordpress.org/support/topic/anonymous-user-can-get-user-list-via-rest-api-is-it-a-bug-or-a-feature/
*
* "only authors (users with published, publicly-available posts) are available when listing, and only information
* that’s already public is shown.
*
* In particular, things like ID, username, display names, avatar URLs are all publicly-available via theme templates
* and feeds. We took specific care when designing the API to only expose what was already there."
*
*/
//Note that the use of an anonymous function only works on PHP7+
add_filter( 'rest_authentication_errors', function ( $result ) {
if ( ! empty( $result ) ) {
return $result;
}
if ( ! is_user_logged_in() && ! current_user_can( 'administrator' ) ) {
return new WP_Error( 'rest_disabled', 'The REST API is unavailable.', array( 'status' => 401 ) );
}
return $result;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment