diff --git a/src/wp-admin/theme-install.php b/src/wp-admin/theme-install.php index 668f856c50..558181d961 100644 --- a/src/wp-admin/theme-install.php +++ b/src/wp-admin/theme-install.php @@ -138,9 +138,23 @@ get_current_screen()->add_help_tab( ) ); +// Help tab: Block themes. +$help_block_themes = + '

' . __( 'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.' ) . '

' . + '

' . __( ' With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.' ) . '

'; + +get_current_screen()->add_help_tab( + array( + 'id' => 'block_themes', + 'title' => __( 'Block themes' ), + 'content' => $help_block_themes, + ) +); + get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Adding New Themes' ) . '

' . + '

' . __( 'Documentation on Block Themes' ) . '

' . '

' . __( 'Support' ) . '

' );