Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Created June 12, 2025 11:15
Show Gist options
  • Save cre8tivediva/4afe23fb44f85c9237eddbdc9a1e7d3d to your computer and use it in GitHub Desktop.
Save cre8tivediva/4afe23fb44f85c9237eddbdc9a1e7d3d to your computer and use it in GitHub Desktop.
Add Reusable Blocks to WordPress
/**
* Reusable Blocks accessible in backend
* @link https://www.billerickson.net/reusable-blocks-accessible-in-wordpress-admin-area
*
*/
function be_reusable_blocks_admin_menu() {
add_menu_page( 'Reusable Blocks', 'Reusable Blocks', 'edit_posts', 'edit.php?post_type=wp_block', '', 'dashicons-editor-table', 22 );
}
add_action( 'admin_menu', 'be_reusable_blocks_admin_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment