SOHO创业

wordpress禁用Rest API

将以下代码插入到functions.php文件中即可

add_filter("json_enabled", "__return_false");
add_filter("json_jsonp_enabled", "__return_false");
add_filter("rest_enabled", "__return_false");
add_filter("rest_jsonp_enabled", "__return_false");
remove_action("init", "rest_api_init");
remove_action("rest_api_init", "rest_api_default_filters", 10);
remove_action("parse_request", "rest_api_loaded");
remove_action("wp_head", "rest_output_link_wp_head", 10);
remove_action("template_redirect", "rest_output_link_header", 11);
remove_action("auth_cookie_malformed", "rest_cookie_collect_status");
remove_action("auth_cookie_expired", "rest_cookie_collect_status");
remove_action("auth_cookie_bad_username", "rest_cookie_collect_status");
remove_action("auth_cookie_bad_hash", "rest_cookie_collect_status");
remove_action("auth_cookie_valid", "rest_cookie_collect_status");
 
add_filter("rest_authentication_errors", function () {
    return new WP_Error("rest_disabled", __("The REST API on this site has been disabled."), ["status" => rest_authorization_required_code()]);
});
Published
Categorized as 建站知识 Tagged

By SOHO

wowsoho.com是一个关注跨境电商、创业话题的网站。

GGD独立站与DTC独立站的区别

GGD独立站(可能指“工厂直销独立站”或“Global Goods Direct”)与DTC独立站(Direct-to-Consumer,直接面向消费者)在商业模式、目标受众和运营策略上存在显著差异。

DTC独立站优势显著潜力无限

DTC(Direct-to-Consumer)独立站作为一种新兴的商业模式,具有显著的优势和潜力。

揭秘成功WordPress外贸建站的关键要素

在当今数字化时代,通过WordPress建立外贸网站已经成为许多企业成功开展国际贸易的关键要素之一。本文将揭秘… Continue reading 揭秘成功WordPress外贸建站的关键要素

WP最主题

WP最主题以简洁、高效的风格著称,其开发的主题通常具有快速的加载速度和良好的兼容性。适合追求简洁设计、注重网站性能的用户,能够帮助用户快速搭建出专业且高效的网站。

wordpress 禁止后台编辑主题

禁止后台编辑主题和插件文件,只需要在wp-config.php中添加以下代码即可。

WordPress子页面page调用父页面标题

在需要调用的页面,添加以下代码就可以现实子页面调用父页面的标题。