WordPress关闭自动更新检测

检查更新及更新提示是WordPress自带的功能,该功能能够自动的检测WordPress程序、你安装的主题、你安装的插件的新的版本并在后台提示管理员更新,有时候很烦这种更新,因为wordpress你多多少少会改点东西,搞不好把你的网站更新挂掉,下面就是停掉更新的检测代码

代码放置位置:将下面的代码添加到主题目录下的functions.php中“?>”之前的任意位置(也就是被“”包裹就行)

//修改后台显示更新的代码
add_filter(‘pre_site_transient_update_core’, create_function(‘$a’, “return null;”)); // 关闭核心提示
add_filter(‘pre_site_transient_update_plugins’, create_function(‘$a’, “return null;”)); // 关闭插件提示
add_filter(‘pre_site_transient_update_themes’, create_function(‘$a’, “return null;”)); // 关闭主题提示
remove_action(‘admin_init’, ‘_maybe_update_core’); // 禁止 WordPress 检查更新
remove_action(‘admin_init’, ‘_maybe_update_plugins’); // 禁止 WordPress 更新插件
remove_action(‘admin_init’, ‘_maybe_update_themes’); // 禁止 WordPress 更新主题

这样你的WordPress就不会在自动提示那烦人的更新了。

3.7以后开启了小版本的自动更新。很多时候更新不会询问你一觉起来就给你更新了,当然这也需要你的主机支持才可以完成。
关闭自动更新
在WordPress 根目录下的 wp-config.php 加入以下代码即可:

define( ‘AUTOMATIC_UPDATER_DISABLED’, true );

发表评论

电子邮件地址不会被公开。 必填项已用*标注

To create code blocks or other preformatted text, indent by four spaces:

    This will be displayed in a monospaced font. The first four 
    spaces will be stripped off, but all other whitespace
    will be preserved.
    
    Markdown is turned off in code blocks:
     [This is not a link](http://example.com)

To create not a block, but an inline code span, use backticks:

Here is some inline `code`.

For more help see http://daringfireball.net/projects/markdown/syntax

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>