我需要在Wordpress中禁用自动语言更新。在Google上搜索后,我在wp-config.php中添加了这两行:
define( 'AUTOMATIC_UPDATER_DISABLED', true );
define( 'WP_AUTO_UPDATE_CORE', false );
但WordPress会继续更新.po和.mo文件。
如何禁用自动更新?为什么这些代码行不起作用?
答案 0 :(得分:0)
这会禁用所有翻译更新:
add_filter(' auto_update_translation',' __ return_false');
在这里阅读更多信息: https://codex.wordpress.org/Configuring_Automatic_Background_Updates#Configuration_via_Filters