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是一个wordpress建站公司

为wordpress后台添加一个自定义页面

给wordpress后台添加一个自定义页面,一个所有用户可见,一个只有编辑权限的用户可见。

WordPress外贸建站平台在市场的独特优势

  在建设外贸网站的众多选择中,WordPress凭借其卓越的特性和广泛的应用,成为全球外贸建站平台的领导者。… Continue reading WordPress外贸建站平台在市场的独特优势

外贸soho人自建独立站用wrodrpess的好处

WordPress为外贸SOHO人提供了一个强大的、成本效益高的自建独立站解决方案。

WordPress外贸建站推广的有效策略

  在当今数字化的商业环境中,成功的外贸建站不仅仅依赖于网站的外观和功能,更需要通过搜索引擎优化(SEO)来提… Continue reading WordPress外贸建站推广的有效策略

WordPress外贸建站教程实用技巧分享

  WordPress外贸建站平台以其简便、灵活的特点成为许多企业打造专业网站的首选工具。在这篇文章中,我们将… Continue reading WordPress外贸建站教程实用技巧分享

WordPress调用当前文章作者头像

制作wordpress博客主题时经常会到用,需要调用wordpress当前文章作者头像的时候,用下面的这段代码即可。