new_network_admin_email_content

new_network_admin_email_content

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('new_network_admin_email_content') is found 1 times:

  • /wp-includes/ms-functions.php line 2778
    2774
    2775
    2776
    2777
    2778
    2779
    2780
    2781
    2782
    2783
    2784
    *     @type string $hash     The secure hash used in the confirmation link URL.
     *     @type string $newemail The proposed new network admin email address.
     * }
     */
    $content = apply_filters( 'new_network_admin_email_content', $email_text, $new_admin_email );
     
    $current_user = wp_get_current_user();
    $content      = str_replace( '###USERNAME###', $current_user->user_login, $content );
    $content      = str_replace( '###ADMIN_URL###', esc_url( network_admin_url( 'settings.php?network_admin_hash=' . $hash ) ), $content );
    $content      = str_replace( '###EMAIL###', $value, $content );
    $content      = str_replace( '###SITENAME###', wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ), $content );