Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- function display_active_plugins_first() {
- global $wp_list_table;
- uksort( $wp_list_table->items, '_order_plugins_by_status' );
- }
- add_action( 'admin_head-plugins.php', 'display_active_plugins_first' );
- function _order_plugins_by_status( $plugin_a, $plugin_b ) {
- if ( is_plugin_active( $plugin_b ) ) {
- if ( is_plugin_active( $plugin_a ) ) {
- return 0;
- } else {
- return 1;
- }
- } else {
- return -1;
- }
- }
RAW Paste Data



