Fires after each row in the Multisite themes list table.
$stylesheet, $theme, $status
Sortie :
@param string $stylesheet Directory name of the theme. @param WP_Theme $theme Current WP_Theme object. @param string $status Status of the theme.
// Ajouter une fonction au hook action 'after_theme_row'
add_action('after_theme_row', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($stylesheet, $theme, $status) {
// Votre code ici
error_log('Hook after_theme_row déclenché');
}
Chargement des actualités...