WordPress: Xóa thông báo cập nhật
                            Viết bởi 
                            vào ngày 13/05/2014
                        
                        
                            
							    
                                    
                                    Danh mục:  
                                
                                                                                                            Wordpress,                                                                                                                                                Backoffice                                                                                                
                        
                        
                        Đặt trong tệp functions.php:
$func = function ($a) {
global $wp_version;
return (object) array(
'last_checked' => time(),
'version_checked' => $wp_version,
);
};
add_filter('pre_site_transient_update_core', $func);
add_filter('pre_site_transient_update_plugins', $func);
add_filter('pre_site_transient_update_themes', $func);