Tắt tất cả thông báo update trong wordpress: lúc trước tôi có chia sẽ bài tắt tất cả thông báo update plugin, thì trong bài hôm nay tôi xin chia sẽ code tắt tất cả thông báo update từ wordpress core, plugins, theme.
Mở file functions.php bỏ code sau vào:
1 2 3 4 5 6 7 |
// hide update notifications 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'); //hide updates for WordPress itself add_filter('pre_site_transient_update_plugins','remove_core_updates'); //hide updates for all plugins add_filter('pre_site_transient_update_themes','remove_core_updates'); //hide updates for all themes |
1 2 3 4 5 6 7 |
add_action( 'in_admin_header', array($this,'hide_all_notices'), 9999999 ); function hide_all_notices() { if (!is_admin()) return; remove_all_actions('admin_notices'); remove_all_actions('all_admin_notices'); } |
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