Skip to content

Instantly share code, notes, and snippets.

@caleuanhopkins
Created February 10, 2017 10:03
Show Gist options
  • Save caleuanhopkins/680f00c5a63fd413de9134ea0b8a47a9 to your computer and use it in GitHub Desktop.
Save caleuanhopkins/680f00c5a63fd413de9134ea0b8a47a9 to your computer and use it in GitHub Desktop.
disable wordpress json-rest api
<?php
add_action('rest_api_init','disable_api');
function disable_api(){
http_response_code(404);
wp_die();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment