Tüm güncellemeleri kapat

WordPress’in tüm güncelleme ve uyarı mesajlarını kapatın. Yapmanız gereken aşağıdaki kodları functions.php içerisine kayıt etmek olacaktır.


/*NOVASTA TEMA GUNCELLERI*/
/*NOVASTA TEMA GUNCELLERI*/
define( 'WP_AUTO_UPDATE_CORE', false );
add_filter( 'auto_update_plugin', '__return_false');
add_filter( 'auto_update_theme', '__return_false');

/*NOVASTA ADMINSIZ NOTIFICATION*/
function hide_update_notice_to_all_but_admin_users()
{
if (!current_user_can(‘update_core’)) {
remove_action( ‘admin_notices’, ‘update_nag’, 3 );
}
}
add_action( ‘admin_head’, ‘hide_update_notice_to_all_but_admin_users’, 1 );
/*NOVASTA TEMA GUNCELLERI*/
/*NOVASTA TEMA GUNCELLERI*/

 

/*TAM KAPATMA*/

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’);
if(strlen(session_id()) < 1) {

session_start();

}

/*TAM KAPATMA*/