Created
November 7, 2024 07:35
-
-
Save zartgesotten/1384dfd25b911ff228f598d86aa5b238 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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