قانون القضاء العسكري رقم 25 لسنة 1966
قانون القضاء العسكري رقم 25 لسنة 1966 المعدل بالقانون رقم 16 لسنة 2007 والقانون رقم 138 لسنة 2010 والقانون رقم 45 لسنة 2011 والقانون رقم 47
// Disable all update checks add_filter('pre_site_transient_update_plugins', '__return_null'); add_filter('pre_site_transient_update_themes', '__return_null'); add_filter('pre_site_transient_update_core', '__return_null'); // Remove update menu add_action('admin_menu', function() { remove_submenu_page('index.php', 'update-core.php'); }); // Hide update notices add_action('admin_head', function() { remove_action('admin_notices', 'update_nag', 3); }); // Disable automatic update checks add_filter('automatic_updater_disabled', '__return_true'); // Optional: disable plugin/theme auto updates UI add_filter('auto_update_plugin', '__return_false'); add_filter('auto_update_theme', '__return_false'); add_action('admin_head', function() { echo ''; });