首页 > 其他 > 详细

屏蔽wordpress升级提示

时间:2014-07-21 11:12:20      阅读:326      评论:0      收藏:0      [点我收藏+]

根据自己的需要,挑选适合的代码放在主题的functions.php文件中就可以了

/* 去除 WordPress 後台升級提示 */

// 2.8 ~ 2.9:
add_filter(‘pre_transient_update_core‘,    create_function
(‘$a‘, "return null;")); // don‘t update core
add_filter(‘pre_transient_update_plugins‘, create_function
(‘$a‘, "return null;")); // don‘t update plugins
add_filter(‘pre_transient_update_themes‘,  create_function
(‘$a‘, "return null;")); // don‘t update themes

// 3.0 ~ 3.1:

add_filter(‘pre_site_transient_update_core‘,    create_function
(‘$a‘, "return null;")); // don‘t update core
add_filter(‘pre_site_transient_update_plugins‘, create_function
(‘$a‘, "return null;")); // don‘t update plugins
add_filter(‘pre_site_transient_update_themes‘,  create_function
(‘$a‘, "return null;")); // don‘t update themes

首先因为自己有强迫症,每次看到后台有更新东西就不爽,其次、个人手贱,看见了不舒服就想点,插件、系统还到好说升级了就升级了,就是因为一次升级了主题,大囧所有的设置都没了。都没了。。。。。。你辛苦N久的SEO优化也就白做了。所以如果你有强迫症那就赶紧收藏吧!

注:update_core是指系统升级,update_plugins是插件升级,update_themes是主题升级

屏蔽wordpress升级提示,布布扣,bubuko.com

屏蔽wordpress升级提示

原文:http://www.cnblogs.com/qiengo/p/3857705.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!