Skip to content

Instantly share code, notes, and snippets.

@zartgesotten
Created November 7, 2024 07:35
Show Gist options
  • Save zartgesotten/1384dfd25b911ff228f598d86aa5b238 to your computer and use it in GitHub Desktop.
Save zartgesotten/1384dfd25b911ff228f598d86aa5b238 to your computer and use it in GitHub Desktop.
<?php
// Entfernt die Spalte „Automatische Updates“ aus der Plugin-Übersicht
function remove_auto_updates_column($columns) {
unset($columns['auto-updates']);
return $columns;
}
add_filter('manage_plugins_columns', 'remove_auto_updates_column');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment