如何停止Wordpress尝试用Wordpress.org上的主题更新我的主题

时间:2019-06-05 20:28:48

标签: php wordpress function themes updates

我有一个名为“变色龙”的个人/自定义主题已有1年以上。从昨天开始,我在Wordpress中收到一条通知,将其更新为最新版本。出于好奇,我单击了它(知道这不是我的更新)。

Wordpress用名为“变色龙”的Wordpress.org主题替换了我的主题。

我已经用Google搜索了这个问题,看来Wordpress无意修复此荒谬的错误。这个问题似乎是9年前提出的。 我不知道现在如何变得如此明显。 9年来,我一直在为客户创建Wordpress网站,从未见过这样的事情。

有人知道如何解决此问题吗?

有没有我可以添加的功能,可以阻止Wordpress仅针对自定义主题在Wordpress.org上寻找更新?

诸如更改style.css和文件夹中的名称之类的修复程序不会将其剪切。

2 个答案:

答案 0 :(得分:0)

尝试使用functions.php:

//Disable automatic WordPress theme updates
add_filter( 'auto_update_theme', '__return_false' );

或您的wp-config.php文件中的所有更新:

define( 'AUTOMATIC_UPDATER_DISABLED', true );

Read more

还可以尝试使用此插件-Disable All WordPress Updates。在其中选择了“禁用所有主题更新”选项。

答案 1 :(得分:0)

这修正了我在 Chameleon 中的错误:

custom_functions.php (epanel/custom_functions.php) 在第 786 行

}

$last_update->last_checked = time();
set_site_transient( 'et_update_themes', $last_update );

return $update_transient;