Make WordPress Core


Ignore:
Timestamp:
11/05/2019 09:28:51 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Docs on docs. Further improve documentation of known return types, plus other docs fixes.

See #48303

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/upgrade.php

    r46290 r46662  
    3636     * @param string $user_password Optional. User's chosen password. Default empty (random password).
    3737     * @param string $language      Optional. Language chosen. Default empty.
    38      * @return array Array keys 'url', 'user_id', 'password', and 'password_message'.
     38     * @return array {
     39     *     Data for the newly installed site.
     40     *
     41     *     @type string $url              The URL of the site.
     42     *     @type int    $user_id          The ID of the site owner.
     43     *     @type string $password         The password of the site owner, if their user account didn't already exist.
     44     *     @type string $password_message The explanatory message regarding the password.
     45     * }
    3946     */
    4047    function wp_install( $blog_title, $user_name, $user_email, $public, $deprecated = '', $user_password = '', $language = '' ) {
Note: See TracChangeset for help on using the changeset viewer.