Title: plugins_list_status_text
Published: May 20, 2026

---

# apply_filters( ‘plugins_list_status_text’, string $text, int $count, string $type )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#wp--skip-link--target)

Filters the status text of default switch case in the plugins list table.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#parameters)󠁿

 `$text`string

Plugins list status text. Default empty string.

`$count`int

Count of the number of plugins.

`$type`string

The status slug being filtered.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#source)󠁿

    ```php
    $text = apply_filters( 'plugins_list_status_text', '', $count, $type );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-plugins-list-table.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-wp-plugins-list-table.php#L595)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-plugins-list-table.php#L595-L595)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#related)󠁿

| Used by | Description | 
| [WP_Plugins_List_Table::get_views()](https://developer.wordpress.org/reference/classes/wp_plugins_list_table/get_views/)`wp-admin/includes/class-wp-plugins-list-table.php` |  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/plugins_list_status_text/?output_format=md#changelog)󠁿

| Version | Description | 
| [7.0.0](https://developer.wordpress.org/reference/since/7.0.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fplugins_list_status_text%2F)
before being able to contribute a note or feedback.