apply_filters( 'theme_row_meta', string[] $theme_meta, string $stylesheet, WP_Theme $theme, string $status )
- Since
- 3.1.0
Filters the array of row meta for each theme in the Multisite themes list table.
Compatibility
- WordPress
- since 3.1.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$theme_metastring[]- An array of the theme's metadata, including the version, author, and theme URI.
$stylesheetstring- Directory name of the theme.
$themeWP_Theme- WP_Theme object.
$statusstring- Status of the theme.
Where this hook fires · 1
wp-admin/includes/class-wp-ms-themes-list-table.php:789WP_MS_Themes_List_Table::column_description()
Source code
<?php * @param string[] $theme_meta An array of the theme's metadata, including * the version, author, and theme URI. * @param string $stylesheet Directory name of the theme. * @param WP_Theme $theme WP_Theme object. * @param string $status Status of the theme. */ $theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status ); echo implode( ' | ', $theme_meta ); echo '</div>'; } Changelog
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.