All WordPress snippets
WordPress

Disable the WordPress REST API

Turns off the built-in JSON REST endpoints — worth doing only if you're certain nothing on your site (plugins, blocks, headless setups) depends on it.

php
/** 
 * Disable JSON REST API  
 */
add_filter( 'json_enabled', '__return_false' );
add_filter( 'json_jsonp_enabled', '__return_false' );
Want your own copy? Fork this repo and build your own snippet collection. Fork on GitHub →