plugins_list

plugins_list

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('plugins_list') is found 1 times:

  • /wp-admin/includes/class-wp-plugins-list-table.php line 309
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    * @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 );
    }