mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
416 B
Text
7 lines
416 B
Text
add_filter('rest_enabled', '__return_false');
|
|
remove_action( 'init', 'rest_api_init' );
|
|
remove_action( 'rest_api_init', 'rest_api_default_filters', 10, 1 );
|
|
remove_action( 'parse_request', 'rest_api_loaded' );
|
|
remove_action( 'rest_api_init', 'wp_oembed_register_route');
|
|
remove_filter( 'rest_pre_serve_request', '_oembed_rest_pre_serve_request', 10, 4 );
|
|
remove_action( 'wp_head', 'wp_oembed_add_discovery_links' );
|