Filters the array of row meta for each theme in the Multisite themes list table.
$theme_meta, $stylesheet, $theme, $status
Sortie :
@param string[] $theme_meta An array of the theme's metadata, including @param string $stylesheet Directory name of the theme. @param WP_Theme $theme WP_Theme object. @param string $status Status of the theme.
// Modifier la valeur avec le filtre 'theme_row_meta'
add_filter('theme_row_meta', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($theme_meta) {
// Modifier la valeur
return $theme_meta;
}
Chargement des actualités...