Wordpress Güncellemelerine yetişemez hale gelmiştim.
Yetti artık dedim. Daldım Netin Sonsuz deryalarına. Tabiki Akıl Hocamız Gogıl ;-)
Plugin ile halledelim diyorsanız. link http://wordpress.org/plugins/disable-wordpress-updates/
Elinizi Kod yazmaya Bulaştırmak istiyorsanız Bulduğum işe yarayan link http://www.wpshouter.com/disable-wordpress-core-update-without-plugin/ .
Kullandığınız temanın functions.php dosyasının en eltındaki <?php } ?> satırının hemen altına bir boşluk bırakıp bu kodu yapıştırıp kaydedin.
//kod
<?php
//Disable Theme Updates # 3.0+
remove_action( 'load-update-core.php', 'wp_update_themes' );
add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
wp_clear_scheduled_hook( 'wp_update_themes' );
//Disable Plugin Updates #3.0+
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
wp_clear_scheduled_hook( 'wp_update_plugins' );
//Diasable Core Updates # 3.0+
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
wp_clear_scheduled_hook( 'wp_version_check' );
?>
Resimde Wordpress Güncel Görünüyor ;-)
Kolay Gelsin ;-)
Teşekkürler otomatik upload için 1e 1
YanıtlaSilYorumunuz için Teşekkürler.
YanıtlaSilFaydalı olmasına sevindim.