Uses
Uses | Description |
---|---|
wp-includes/load.php: get_current_network_id() | Retrieves the current network ID. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/pluggable.php: wp_generate_password() | Generates a random password drawn from the defined set of characters. |
wp-includes/functions.php: maybe_unserialize() | Unserialize data only if it was serialized. |
wp-includes/functions.php: current_time() | Retrieves the current time based on specified type. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/user.php: username_exists() | Determines whether the given username exists. |
wp-includes/ms-functions.php: wpmu_create_user() | Create a user. |
wp-includes/ms-functions.php: wpmu_create_blog() | Create a site. |
wp-includes/ms-functions.php: wpmu_activate_user | Fires immediately after a new user is activated. |
wp-includes/ms-functions.php: wpmu_activate_blog | Fires immediately after a site is activated. |
wp-includes/wp-db.php: wpdb::get_row() | Retrieves one row from the database. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |