plugins_list_status_text
plugins_list_status_text
Appears in: wordpress-7.0
Hook Type: filter
See hook in action
Displaying hooks found in version: wordpress-7.0apply_filters('plugins_list_status_text') is found 1 times:
- /wp-admin/includes/class-wp-plugins-list-table.php line 595
* @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 )