Filters the subject of the welcome email sent to the site administrator after site activation.
sprintf( $subject, $current_network->site_name, wp_unslash( $title
Sortie :
@param string $subject Subject of the email.
// Modifier la valeur avec le filtre 'update_welcome_subject'
add_filter('update_welcome_subject', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(sprintf( $subject) {
// Modifier la valeur
return sprintf( $subject;
}
Chargement des actualités...