Skip to content

Instantly share code, notes, and snippets.

@AndreFCAmorim
Created November 6, 2022 15:43
Show Gist options
  • Save AndreFCAmorim/37686553ed4a92843d4b379638666d4b to your computer and use it in GitHub Desktop.
Save AndreFCAmorim/37686553ed4a92843d4b379638666d4b to your computer and use it in GitHub Desktop.
Disable WordPress REST API on WordPress
<?php
add_filter(
'rest_authentication_errors',
function ( $access ) {
return new WP_Error(
'rest_disabled',
__( 'The WordPress REST API has been disabled.' ),
array(
'status' => rest_authorization_required_code(),
)
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment