将下面代码添加到主题functions.php文件中
禁用REST API功能,并且不在head输出链接信息。
1.禁用REST API
add_filter(‘rest_enabled’, ‘_return_false’); add_filter(‘rest_jsonp_enabled’, ‘_return_false’);
2.移除wp-json链接
将下面代码添加到主题functions.php文件中,去除head里面输出的链接信息。
remove_action( ‘wp_head’, ‘rest_output_link_wp_head’, 10 );remove_action( ‘wp_head’, ‘wp_oembed_add_discovery_links’, 10 );