maybe_add_existing_user_to_blog [ WordPress Function ]
| Uses: | |
| Defined at: |
|
Add a new user to a blog by visiting /newbloguser/username/.
This will only work when the user's details are saved as an option keyed as 'new_user_x', where 'x' is the username of the user to be added, as when a user is invited through the regular WP Add User interface.
Source
<?php
function maybe_add_existing_user_to_blog() {
if ( false === strpos( $_SERVER[ 'REQUEST_URI' ], '/newbloguser/' ) )
return false;
$parts = explode( '/', $_SERVER[ 'REQUEST_URI' ] );
$key = array_pop( $parts );
if ( $key == '' )
$key = array_pop( $parts );
$details = get_option( 'new_user_' . $key );
if ( !empty( $details ) )
delete_option( 'new_user_' . $key );
if ( empty( $details ) || is_wp_error( add_existing_user_to_blog( $details ) ) )
wp_die( sprintf(__('An error occurred adding you to this site. Back to the <a href="%s">homepage</a>.'), home_url() ) );
wp_die( sprintf(__('You have been added to this site. Please visit the <a href="%s">homepage</a> or <a href="%s">log in</a> using your username and password.'), home_url(), admin_url() ), __('Success') );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- #3916 (Blog not properly added when accepting invitation sent via ...
Jan 15, 2012 ... When that happens, the function maybe_add_existing_user_to_blog() (ms- functions.php) fires, and then does add_existing_user_to_blog(), etc ...
buddypress.trac.wordpress.org - Docs for page ms-functions.php
Functions. Description | Functions. add_existing_user_to_blog (line 1748). Add a user to a blog based on details from maybe_add_existing_user_to_blog().
phpdoc.wordpress.org - ms-functions.php - PHP Cross Reference of WordPress Source - Yoast
Jun 1, 2011 ... maybe_add_existing_user_to_blog() ..... Add a user to a blog based on details from maybe_add_existing_user_to_blog(). param: array $ ...
xref.yoast.com - add_existing_user_to_blog (WordPress Function) - WPSeek.com
... Functions: maybe_add_existing_user_to_blog, add_new_user_to_blog, ... Add a user to a blog based on details from maybe_add_existing_user_to_blog().
wpseek.com