Отключить обновление WP через файл function.php

// ОТКЛЮЧАЕМ ОБНОВЛЕНИЕ

remove_action( ‘load-update-core.php’, ‘wp_update_themes’ );

add_filter( ‘pre_site_transient_update_themes’, ‘__return_null’ );

// ОТКЛЮЧАЕМ АВТО ОБНОВЛЕНИЯ

add_filter( ‘auto_update_theme’, ‘__return_false’ );

// УДАЛИМ ИМЕЮЩИЕСЯ УВЕДОМЛЕНИЯ ИЗ АДМИНКИ

add_action(‘admin_menu’,’hide_admin_notices’);

function hide_admin_notices() { remove_action( ‘admin_notices’, ‘update_nag’, 3 ); }