Skip to content

Instantly share code, notes, and snippets.

@TarttWeb
Created April 5, 2022 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TarttWeb/71969923051c0275746d429c2ce7f07a to your computer and use it in GitHub Desktop.
Save TarttWeb/71969923051c0275746d429c2ce7f07a to your computer and use it in GitHub Desktop.
Add Reusable blocks menu item to WordPress Admin area
<?php
// Add Reusable blocks to WordPress Admin area
function add_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', 'add_reusable_blocks_admin_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment