Changeset 58071
- Timestamp:
- 05/01/2024 11:42:24 PM (9 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r57926 r58071 3326 3326 * 3327 3327 * @return WP_Error|array { 3328 * Page cache detail or else a WP_Error if unable to determine.3329 * 3330 * @type string $status Page cache status. Good, Recommended or Critical.3331 * @type bool $advanced_cache_present Whether page cache plugin is available or not.3332 * @type string[] $headers Client caching response headers detected.3333 * @type float $response_time Response time of site.3328 * Page cache detail or else a WP_Error if unable to determine. 3329 * 3330 * @type string $status Page cache status. Good, Recommended or Critical. 3331 * @type bool $advanced_cache_present Whether page cache plugin is available or not. 3332 * @type string[] $headers Client caching response headers detected. 3333 * @type float $response_time Response time of site. 3334 3334 * } 3335 3335 */ -
trunk/src/wp-includes/block-template-utils.php
r58042 r58071 250 250 * @param string $slug Template slug. 251 251 * @return array|null { 252 * Array with template metadata if $template_type is one of 'wp_template' or 'wp_template_part',253 * null otherwise.254 * 255 * @type string $slug Template slug.256 * @type string $path Template file path.257 * @type string $theme Theme slug.258 * @type string $type Template type.259 * @type string $area Template area. Only for 'wp_template_part'.260 * @type string $title Optional. Template title.261 * @type string[] $postTypes Optional. List of post types that the template supports. Only for 'wp_template'.252 * Array with template metadata if $template_type is one of 'wp_template' or 'wp_template_part', 253 * null otherwise. 254 * 255 * @type string $slug Template slug. 256 * @type string $path Template file path. 257 * @type string $theme Theme slug. 258 * @type string $type Template type. 259 * @type string $area Template area. Only for 'wp_template_part'. 260 * @type string $title Optional. Template title. 261 * @type string[] $postTypes Optional. List of post types that the template supports. Only for 'wp_template'. 262 262 * } 263 263 */ -
trunk/src/wp-includes/user.php
r57711 r58071 3256 3256 * @type string $headers The headers of the email. 3257 3257 * } 3258 * @ typestring $key The activation key.3259 * @ typestring $user_login The username for the user.3260 * @ typeWP_User $user_data WP_User object.3258 * @param string $key The activation key. 3259 * @param string $user_login The username for the user. 3260 * @param WP_User $user_data WP_User object. 3261 3261 */ 3262 3262 $notification_email = apply_filters( 'retrieve_password_notification_email', $defaults, $key, $user_login, $user_data );
Note: See TracChangeset
for help on using the changeset viewer.