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是一个关注跨境电商、创业话题的网站。

WMD独立站与DTC独立站有什么区别

如果你的目标是低成本快速启动,WMD模式可能更适合;如果希望建立长期品牌价值,DTC模式是更好的选择。

外贸建站服务商WaiMaoYes

歪猫建站(WaiMaoYes)是一家专注于外贸网站建设的公司,提供从建站策划、网页设计、前后端开发到运营推广的… Continue reading 外贸建站服务商WaiMaoYes

外贸SOHO低成本建站 1000预算建网站方案

搞清楚这些建站相关的知识和建站的流程步骤,外贸SOHO可以用1000元左右的预算搭建一个功能齐全且具有吸引力的网站。

外贸独立站运营推广10大必需要遵守的原则

外贸独立站运营推广需要遵守的10大原则,遵循这些原则,外贸独立站可以在激烈的市场竞争中脱颖而出,实现长期稳定的发展。

海外市场网络营销专业公司

北京无极花是一家专注于韩语建站和韩国市场网络营销的专业公司。凭借对韩国市场的深入了解和丰富的建站经验,无极花致力于为客户提供从网站搭建到网络营销的一站式解决方案。

根据不同的分类调用指定的不同single模板

根据不同的分类别名,调用不同的single模板。