admin_created_user_email [ WordPress Function ]
admin_created_user_email ( $text )
| Defined at: |
|
Benzer Fonksiyonlar: admin_created_user_subject, wpmu_create_user, create_user, wp_create_user, get_user_by_email
No description yet.
Source
<?php
function admin_created_user_email( $text ) {
/* translators: 1: Site name, 2: site URL, 3: role */
return sprintf( __( 'Hi,
You\'ve been invited to join \'%1$s\' at
%2$s with the role of %3$s.
If you do not want to join this site please ignore
this email. This invitation will expire in a few days.
Please click the following link to activate your user account:
%%s' ), get_bloginfo('name'), home_url(), esc_html( $_REQUEST[ 'role' ] ) );
}
add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' );
function admin_created_user_subject( $text ) {
return sprintf( __( '[%s] Your site invite' ), get_bloginfo( 'name' ) );
}
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- admin_created_user_email (WordPress Function) - WPSeek.com
WordPress lookup for admin_created_user_email, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - admin_created_user_email | A HitchHackers guide through ...
Feb 11, 2011 ... function admin_created_user_email( $text ) { /* translators: 1: Site name, 2: site URL, 3: role */ return sprintf( __( 'Hi, You\'ve been invited to join ...
hitchhackerguide.com - email - Overriding the default WP Multisite notification e-mail ...
Jul 23, 2011 ... if ( is_multisite() ) { function admin_created_user_email( $text ) { /* translators: 1: Site name, 2: site URL, 3: role */ return sprintf( __( 'Hi, You\'ve ...
wordpress.stackexchange.com - PHPXRef 0.7 : WordPress : /wp-admin/user-new.php source
17 } 18 19 if ( is_multisite() ) { 20 function admin_created_user_email( $text ) { 21 /* translators: 1: Site name, 2: site URL, 3: role */ 22 return sprintf( __( 'Hi, ...
phpxref.ftwr.co.uk