Uses
Uses | Description |
---|---|
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/pluggable.php: get_userdata() | Retrieve user info by user ID. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/user.php: get_user_meta() | Retrieve user meta field for a user. |
wp-includes/user.php: get_blogs_of_user() | Get the sites a user belongs to. |
wp-includes/user.php: update_user_meta() | Update user meta field based on user ID. |
wp-includes/ms-functions.php: remove_user_from_blog | Fires before a user is removed from a site. |
wp-includes/ms-blogs.php: switch_to_blog() | Switch the current blog. |
wp-includes/ms-blogs.php: restore_current_blog() | Restore the current blog, after calling switch_to_blog(). |
wp-includes/wp-db.php: wpdb::get_col() | Retrieves one column from the database. |
wp-includes/wp-db.php: wpdb::query() | Performs a MySQL database query, using current database connection. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |