Changeset 60578
- Timestamp:
- 11/18/2025 06:16:32 PM (6 days ago)
- Location:
- branches/6.9
- Files:
-
- 2 edited
-
wp-admin/includes/template.php (modified) (2 diffs)
-
wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.9/wp-admin/includes/template.php
r60329 r60578 2273 2273 * @param string $post_states_html All relevant post states combined into an HTML string for display. 2274 2274 * E.g. `— <span class='post-state'>Draft, </span><span class='post-state'>Sticky</span>`. 2275 * @param string<string, string>$post_states A mapping of post state slugs to translated post state labels.2275 * @param array<string, string> $post_states A mapping of post state slugs to translated post state labels. 2276 2276 * E.g. `array( 'draft' => __( 'Draft' ), 'sticky' => __( 'Sticky' ), ... )`. 2277 2277 * @param WP_Post $post The current post object. … … 2356 2356 * with `function_exists()` before being used. 2357 2357 * 2358 * @param string<string, string>$post_states A mapping of post state slugs to translated post state labels.2358 * @param array<string, string> $post_states A mapping of post state slugs to translated post state labels. 2359 2359 * E.g. `array( 'draft' => __( 'Draft' ), 'sticky' => __( 'Sticky' ), ... )`. 2360 2360 * @param WP_Post $post The current post object. -
branches/6.9/wp-includes/version.php
r60577 r60578 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6.9-RC2-6126 5';19 $wp_version = '6.9-RC2-61266'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.