Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Bet Hannon

    (@bethannon1)

    Hi Danny!

    I’m not at all sure what you are asking. Can you ask your question a different way? What are you trying to do?

    Thread Starter Danny Bahl

    (@dannybahl)

    When you set up the auto emails for at multisite, you can use placeholders like USERNAME, SITE_NAME and BLOG_URL.

    I’m looking for the whole list.

    Moderator Bet Hannon

    (@bethannon1)

    Hi Danny!

    Sorry it took me a little bit to get back to you – it took a little bit to track this down! ??

    In wp-includes/ms-functions.php, you will find:

    $welcome_email = apply_filters( 'update_welcome_user_email', $welcome_email, $user_id, $password, $meta );
    	$welcome_email = str_replace( 'SITE_NAME', $current_site->site_name, $welcome_email );
    	$welcome_email = str_replace( 'USERNAME', $user->user_login, $welcome_email );
    	$welcome_email = str_replace( 'PASSWORD', $password, $welcome_email );
    	$welcome_email = str_replace( 'LOGINLINK', wp_login_url(), $welcome_email );
    Thread Starter Danny Bahl

    (@dannybahl)

    Really great, Thanks alot!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘List of placeholders’ is closed to new replies.