禁用WordPress不需要的功能的代码

简单代码禁用WordPress中不需要的功能,之前本站也分享了不少关于WordPress的相关技巧性东西,有需要的朋友可以回顾一下吧,今天的内容和之前的部分可能有重复的,大家就挑着看吧,这些代码非常实用,只需要按自己的需要选择下面这些代码,插入到 functions.php 文件中即可,最好是放在文件顶部。可轻松实现禁用多个不必要的功能。

//禁用l10n.js
wp_deregister_script('l10n');
//彻底移除管理员工具条
add_filter('show_admin_bar','__return_false');
//禁用自动保存草稿
wp_deregister_script('autosave');
//禁用修改历史记录
remove_action('pre_post_update','wp_save_post_revision');
//禁止在head泄露WordPress版本号
remove_action('wp_head','wp_generator');
//移除head中的rel="EditURI"
remove_action('wp_head','rsd_link');
//移除head中的rel="wlwmanifest"
remove_action('wp_head','wlwmanifest_link');
//禁止半角符号自动变全角
foreach(array('comment_text','the_content','the_excerpt','the_title') as $xx)
remove_filter($xx,'wptexturize');
//禁止自动给文章段落添加

标签
remove_filter('the_content','wpautop');
remove_filter('the_excerpt','wpautop');
//禁止自动把'WordPress'之类的变成'WordPress'
remove_filter('comment_text','capital_P_dangit',31);
remove_filter('the_content','capital_P_dangit',11);
remove_filter('the_title','capital_P_dangit',11);

原文地址:
http://sinobloger.org/wordpress/禁用wordpress不需要的功能/

Related Posts