傻大憨

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 傻大憨

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

禁用WordPress中的搜索功能

以下代码可以禁止使用wordpress中的搜索功能

WMD独立站的十大优势

WMD独立站是一种专注于外贸领域的独立电商网站模式,主要为企业提供从建站到运营推广的一站式服务,帮助企业通过自主搭建的网站开展跨境贸易和国际业务销售。

The Best WordPress Chinese Theme Simplified Website WordPress Theme

If you are looking for an excellent WordPress Chinese theme, Jianzhanpress.com is undoubtedly a good option worth considering.

wordpress站Linux云主机运维教程之:屏蔽ip地址

linux屏蔽IP命令,linux使用iptables屏蔽ip地址教程。

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

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

文心一言与SORA在WP企业网站程序开发中的对比

本文将对比文心一言与SORA在WordPress企业网站首页程序开发中的应用,并深入探讨文心一言在这一领域的优势。