Changeset 61634
- Timestamp:
- 02/13/2026 11:48:09 AM (4 weeks ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
wp-admin/includes/dashboard.php (modified) (1 diff)
-
wp-includes/post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r61555 r61634 2130 2130 <h3><?php _e( 'Switch up your site’s look & feel with Styles' ); ?></h3> 2131 2131 <p><?php _e( 'Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?' ); ?></p> 2132 <a href="<?php echo esc_url( ad min_url( '/site-editor.php?path=%2Fwp_global_styles') ); ?>"><?php _e( 'Edit styles' ); ?></a>2132 <a href="<?php echo esc_url( add_query_arg( 'p', rawurlencode( '/styles' ), admin_url( 'site-editor.php' ) ) ); ?>"><?php _e( 'Edit styles' ); ?></a> 2133 2133 <?php else : ?> 2134 2134 <h3><?php _e( 'Discover a new way to build your site.' ); ?></h3> -
trunk/src/wp-includes/post.php
r61596 r61634 360 360 $template_edit_link = 'site-editor.php?' . build_query( 361 361 array( 362 'postType' => '%s', 363 'postId' => '%s', 364 'canvas' => 'edit', 362 'p' => '/%s/%s', 363 'canvas' => 'edit', 365 364 ) 366 365 ); … … 532 531 $navigation_post_edit_link = 'site-editor.php?' . build_query( 533 532 array( 534 'postId' => '%s', 535 'postType' => 'wp_navigation', 536 'canvas' => 'edit', 533 'p' => '/wp_navigation/%s', 534 'canvas' => 'edit', 537 535 ) 538 536 );
Note: See TracChangeset
for help on using the changeset viewer.