Created
June 12, 2025 11:15
-
-
Save cre8tivediva/4afe23fb44f85c9237eddbdc9a1e7d3d to your computer and use it in GitHub Desktop.
Add Reusable Blocks to WordPress
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
/** | |
* 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