wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_admin_bar_edit_site_menu › WordPress Function
Since5.9.0
Deprecatedn/a
› wp_admin_bar_edit_site_menu ( $wp_admin_bar )
Parameters: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Adds the "Edit site" link to the Toolbar.
Source
function wp_admin_bar_edit_site_menu( $wp_admin_bar ) { global $_wp_current_template_id; // Don't show if a block theme is not activated. if ( ! wp_is_block_theme() ) { return; } // Don't show for users who can't edit theme options or when in the admin. if ( ! current_user_can( 'edit_theme_options' ) || is_admin() ) { return; } $wp_admin_bar->add_node( array( 'id' => 'site-editor', 'title' => __( 'Edit site' ), 'href' => add_query_arg( array( 'postType' => 'wp_template', 'postId' => $_wp_current_template_id, 'canvas' => 'edit', ), admin_url( 'site-editor.php' ) ), ) ); }