theme_row_meta filter-hook . WP 3.1.0
Filters the array of row meta for each theme in the Multisite themes list table.
Usage
add_filter( 'theme_row_meta', 'filter_function_name_2274', 10, 4 ); function filter_function_name_2274( $theme_meta, $stylesheet, $theme, $status ){ // filter... return $theme_meta; }
- $theme_meta(string[])
- An array of the theme's metadata, including the version, author, and theme URI.
- $stylesheet(string)
- Directory name of the theme.
- $theme(WP_Theme)
- WP_Theme object.
- $status(string)
- Status of the theme.
Changelog
Since 3.1.0 | Introduced. |
Where the hook is called
theme_row_meta
wp-admin/includes/class-wp-ms-themes-list-table.php 743
$theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status );