Filters the status text of default switch case in the plugins list table.
$textstring$countint$typestringwp-admin/includes/class-wp-plugins-list-table.php:633WP_Plugins_List_Table::get_views() * @since 7.0.0 * * @param string $text Plugins list status text. Default empty string. * @param int $count Count of the number of plugins. * @param string $type The status slug being filtered. */ $text = apply_filters( 'plugins_list_status_text', '', $count, $type ); if ( empty( $text ) || ! is_string( $text ) ) { $text = $type; } $text = esc_html( $text ) . ' ' . sprintf( '<span class="count">(%s)</span>', number_format_i18n( $count )Introduced in 7.0.0. Unchanged from 7.0.4 through 7.1.0.
Signature, return type and hooks compared across 2 parsed releases.