Skip to content

Early-bird lifetime licence: $199 once, for the first 200 buyers only. See the offer

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.

  • Type PHP
  • Runs Everywhere (runs as WordPress loads)
  • Category Posts and editor
  • Tested with WordPress 7.1
PHP
<?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

Move your snippets over this afternoon.

Importing changes nothing until you switch over, and your old shortcodes keep working.