Patterns in the admin menu
Adds a Patterns link under Appearance for every theme, so you can manage your saved (synced) patterns in one list. Block themes already have it.
<?php
add_action(
'admin_menu',
static function () {
if ( wp_is_block_theme() ) {
return;
}
add_submenu_page( 'themes.php', __( 'Patterns' ), __( 'Patterns' ), 'edit_posts', 'edit.php?post_type=wp_block' );
}
);
In these packs
- Posts and the editor: Make the block editor calmer and give pages excerpts, tags and categories.