Điều này là cần thiết, việc này đôi lúc sẽ gây ra lỗi website đột xuât do lỗi mạng đang update lở dở chẳng hạn, đường truyền đến hosting có vấn đề chẳng hạn sẽ dẫn đến việc update không hoàn thành gây ra lỗi site. Sau đây tui xin chia sẽ code để disable
Mở file wp-config.php lên thêm vào các dòng code sau:
1 2 |
//disable update wordpress core define( 'WP_AUTO_UPDATE_CORE', false ); |
Mở file functions.php thêm code sau vào
1 2 3 4 |
//Disable update plugins add_filter( 'auto_update_plugin', '__return_false' ); //Disable update themes add_filter( 'auto_update_theme', '__return_false' ); |
1 2 3 4 5 6 |
add_filter('pre_site_transient_update_core',array($this,'remove_core_updates')); //hide updates for WordPress itself add_filter('pre_site_transient_update_plugins',array($this,'remove_core_updates')); //hide updates for all plugins add_filter('pre_site_transient_update_themes',array($this,'remove_core_updates')); //hide updates for all themes function remove_core_updates(){ global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,); } |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress