Changeset 56209 for trunk/src/wp-includes/admin-bar.php
- Timestamp:
- 07/11/2023 11:31:48 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/admin-bar.php
r55881 r56209 420 420 * @since 5.9.0 421 421 * 422 * @global string $_wp_current_template_id 423 * @since 6.3.0 Added `$_wp_current_template_id` global for editing of current template directly from the admin bar. 424 * 422 425 * @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance. 423 426 */ 424 427 function wp_admin_bar_edit_site_menu( $wp_admin_bar ) { 428 global $_wp_current_template_id; 429 425 430 // Don't show if a block theme is not activated. 426 431 if ( ! wp_is_block_theme() ) { … … 437 442 'id' => 'site-editor', 438 443 'title' => __( 'Edit site' ), 439 'href' => admin_url( 'site-editor.php' ), 444 'href' => add_query_arg( 445 array( 446 'postType' => 'wp_template', 447 'postId' => $_wp_current_template_id, 448 ), 449 admin_url( 'site-editor.php' ) 450 ), 440 451 ) 441 452 );
Note: See TracChangeset
for help on using the changeset viewer.