| 141 | // Help tab: Block themes. |
| 142 | $help_block_themes = '<p>' . __( 'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. |
| 143 | These themes are built for the newest features in WordPress that allow you to edit |
| 144 | and customize all parts of your site.' ) . '</p>' . |
| 145 | '<p>' . __( ' With a block theme, you can place and edit blocks outside your content by customizing or creating new templates.' ) . '</p>'; |
| 146 | '<p>' . __( ' You can search for block themes using the Feature Filter, by checking the box for the keyword "full site editing".' ) . '</p>'; |
| 147 | |
| 148 | get_current_screen()->add_help_tab( |
| 149 | array( |
| 150 | 'id' => 'block_themes', |
| 151 | 'title' => __( 'Block themes' ), |
| 152 | 'content' => $help_block_themes, |
| 153 | ) |
| 154 | ); |
| 155 | |