Filters the HTML of the auto-updates setting for each theme in the Themes list table.
$html, $stylesheet, $theme
Sortie :
@param string $html The HTML for theme's auto-update setting, including @param string $stylesheet Directory name of the theme. @param WP_Theme $theme WP_Theme object.
// Modifier la valeur avec le filtre 'theme_auto_update_setting_html'
add_filter('theme_auto_update_setting_html', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($html) {
// Modifier la valeur
return $html;
}
Chargement des actualités...