Skip to content

Instantly share code, notes, and snippets.

@danielcharrua
Created July 11, 2023 08:24
Show Gist options
  • Save danielcharrua/e9de06b8e7f4c23dc25ae272a2d8f53d to your computer and use it in GitHub Desktop.
Save danielcharrua/e9de06b8e7f4c23dc25ae272a2d8f53d to your computer and use it in GitHub Desktop.
WordPress - Add an admin menu link for Reusable Blocks
<?php
/**
* Add an admin menu link for Reusable Blocks
*/
function my_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', 'my_reusable_blocks_admin_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment