Created
July 11, 2023 08:24
-
-
Save danielcharrua/e9de06b8e7f4c23dc25ae272a2d8f53d to your computer and use it in GitHub Desktop.
WordPress - Add an admin menu link for Reusable Blocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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