Filters the contents of the email sent to the site administrator when WordPress is installed.
$installed_email, $user, $blog_title, $blog_url, $password
Sortie :
@param array $installed_email {
@param WP_User $user The site administrator user object.
@param string $blog_title The site title.
@param string $blog_url The site URL.
@param string $password The site administrator's password. Note that a placeholder message
// Modifier la valeur avec le filtre 'wp_installed_email'
add_filter('wp_installed_email', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($installed_email) {
// Modifier la valeur
return $installed_email;
}
Chargement des actualités...