Ticket #58076: 58076.7.patch
File 58076.7.patch, 3.0 KB (added by , 21 months ago) |
---|
-
wp-includes/class-wp-user.php
116 116 * Retrieves the userdata and passes it to WP_User::init(). 117 117 * 118 118 * @since 2.0.0 119 * 120 * @global wpdb $wpdb WordPress database abstraction object. 119 121 * 120 122 * @param int|string|stdClass|WP_User $id User's ID, a WP_User object, or a user object from the DB. 121 123 * @param string $name Optional. User's username -
wp-includes/deprecated.php
2751 2751 * Get parent post relational link. 2752 2752 * 2753 2753 * @since 2.8.0 2754 * 2755 * @global WP_Post $post Global post object. 2756 * 2754 2757 * @deprecated 3.3.0 2755 2758 * 2756 2759 * @param string $title Optional. Link title format. Default '%title'. -
wp-includes/feed-atom-comments.php
63 63 * Fires at the end of the Atom comment feed header. 64 64 * 65 65 * @since 2.8.0 66 * 67 * @global WP_Post $post Global post object. 66 68 */ 67 69 do_action( 'comments_atom_head' ); 68 70 ?> -
wp-includes/feed-rss2-comments.php
67 67 * Fires at the end of the RSS2 comment feed header. 68 68 * 69 69 * @since 2.3.0 70 * 71 * @global WP_Post $post Global post object. 70 72 */ 71 73 do_action( 'commentsrss2_head' ); 72 74 -
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
1742 1742 * Prepares a single post output for response. 1743 1743 * 1744 1744 * @since 4.7.0 1745 * 1746 * @global WP_Post $post Global post object. 1747 * 1745 1748 * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support. 1746 1749 * 1747 1750 * @param WP_Post $item Post object. -
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php
540 540 * Prepares the revision for the REST response. 541 541 * 542 542 * @since 4.7.0 543 * 544 * @global WP_Post $post Global post object. 545 * 543 546 * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support. 544 547 * 545 548 * @param WP_Post $item Post revision object.