Filters the array of row meta for each theme in the Multisite themes list table.
$theme_metastring[]$stylesheetstring$themeWP_Theme$statusstringwp-admin/includes/class-wp-ms-themes-list-table.php:768WP_MS_Themes_List_Table::column_description()<?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>'; } Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.