diff --git a/wp-admin/includes/class-wp-plugins-list-table.php b/wp-admin/includes/class-wp-plugins-list-table.php index 81e45cf258..b58ba5f352 100644 --- a/wp-admin/includes/class-wp-plugins-list-table.php +++ b/wp-admin/includes/class-wp-plugins-list-table.php @@ -296,6 +296,15 @@ class WP_Plugins_List_Table extends WP_List_Table { $plugins['search'] = array_filter( $plugins['all'], array( $this, '_search_callback' ) ); } + /** + * Filters the array of plugins for the list table. + * + * @since 6.3.0 + * + * @param array[] $plugins An array of arrays of plugin data, keyed by context. + */ + $plugins = apply_filters( 'plugins_list', $plugins ); + $totals = array(); foreach ( $plugins as $type => $list ) { $totals[ $type ] = count( $list ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 1e4f7bf19b..c0e1e28d52 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-56067'; +$wp_version = '6.3-alpha-56068'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.