Skip to content

Instantly share code, notes, and snippets.

@jamesmthornton
Last active July 25, 2020 18:47
Show Gist options
  • Save jamesmthornton/47b0127053dbe9bebadd7526d957a745 to your computer and use it in GitHub Desktop.
Save jamesmthornton/47b0127053dbe9bebadd7526d957a745 to your computer and use it in GitHub Desktop.
Add a link to the edit reusable blocks page in Wordpress dashboard UI
<?php
add_action( 'admin_menu', 'add_wp_blocks_to_menu' );
function add_wp_blocks_to_menu(){
global $menu;
add_menu_page( 'global_blocks', 'Global Blocks', 'read', 'wp_block', '', 'dashicons-align-right', 1 );
$menu[1][2] = "/wp-admin/edit.php?post_type=wp_block";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment