Make WordPress Core

Ticket #57069: 57069.8.patch

File 57069.8.patch, 2.9 KB (added by upadalavipul, 22 months ago)
  • wp-admin/includes/export.php

     
    317317         * Outputs term meta XML tags for a given term object.
    318318         *
    319319         * @since 4.6.0
     320         *
     321         * @global wpdb $wpdb WordPress database abstraction object.
    320322         *
    321323         * @param WP_Term $term Term object.
    322324         */
  • wp-includes/ms-deprecated.php

     
    178178 * @since MU (3.0.0)
    179179 * @deprecated 3.0.0 Use wp_get_sites()
    180180 * @see wp_get_sites()
     181 *
     182 * @global wpdb $wpdb WordPress database abstraction object.
    181183 *
    182184 * @param int    $start      Optional. Offset for retrieving the blog list. Default 0.
    183185 * @param int    $num        Optional. Number of blogs to list. Default 10.
  • wp-includes/ms-functions.php

     
    12781278 * Deletes an associated signup entry when a user is deleted from the database.
    12791279 *
    12801280 * @since 5.5.0
     1281 *
     1282 * @global wpdb $wpdb WordPress database abstraction object.
    12811283 *
    12821284 * @param int      $id       ID of the user to delete.
    12831285 * @param int|null $reassign ID of the user to reassign posts and links to.
  • wp-includes/option.php

     
    10341034 * from table a, and the corresponding transient_timeout record from table b.
    10351035 *
    10361036 * @since 4.9.0
     1037 *
     1038 * @global wpdb $wpdb WordPress database abstraction object.
    10371039 *
    10381040 * @param bool $force_db Optional. Force cleanup to run against the database even when an external object cache is used.
    10391041 */
  • wp-includes/post.php

     
    79527952 *
    79537953 * @since 4.5.0
    79547954 * @access private
     7955 *
     7956 * @global wpdb $wpdb WordPress database abstraction object.
    79557957 *
    79567958 * @param WP_Post $post The post.
    79577959 * @return string New slug for the post.
  • wp-includes/user.php

     
    35073507 *
    35083508 * @since 4.4.0
    35093509 * @since 4.9.0 The `$site_id` parameter was added to support multisite.
     3510 *
     3511 * @global wpdb $wpdb WordPress database abstraction object.
    35103512 *
    35113513 * @param int|null $site_id Optional. The site ID to get users with no role for. Defaults to the current site.
    35123514 * @return string[] Array of user IDs as strings.