Đôi khi bạn cần chặn cập nhật WordPress vì lý do gì đó, đây là đoạn code giúp bạn không cho WordPress cập nhật phiên bản mới của WordPress, Giao diện và Plugin
/*Chặn update*/ function remove_core_updates(){ global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,); } add_filter('pre_site_transient_update_core','remove_core_updates'); add_filter('pre_site_transient_update_plugins','remove_core_updates'); add_filter('pre_site_transient_update_themes','remove_core_updates');
Bạn chèn vào file functions.php của giao diện đang dùng là được.
Nói chung thì mình không khuyến khích chặn cập nhật WordPress đâu, cập nhật lên phiên bản mới nhất sẽ giúp website của bạn an toàn hơn.