摘要:升级版本后的WordPress新增加了REST API无用链接,下面给大家分享禁用和删除的方法
升级版本后的WordPress新增加了REST API无用链接,下面给大家分享禁用和删除的方法
为大家介绍两种方法:
将下面的函数代码添加到主题functions.php文件中即可。
1.禁用REST API
1
|
add_filter(‘rest_enabled’, ‘_return_false’); add_filter(‘rest_jsonp_enabled’, ‘_return_false’);
|
2.移除wp-json链接
将下面代码添加到主题functions.php文件中,去除head里面输出的链接信息。
1
2
|
remove_action( ‘wp_head’, ‘rest_output_link_wp_head’, 10 );
remove_action( ‘wp_head’, ‘wp_oembed_add_discovery_links’, 10 );
|
来源:http://www.wazhuti.com/295.html