Skip to content

Instantly share code, notes, and snippets.

@obiPlabon
Last active October 16, 2015 17:37
Show Gist options
  • Save obiPlabon/f2cac0f55822d4b8e830 to your computer and use it in GitHub Desktop.
Save obiPlabon/f2cac0f55822d4b8e830 to your computer and use it in GitHub Desktop.
Add metabox to WordPress menu editor
<?php
//add_action( 'admin_init', 'obi_add_meta_box' );
// load-nav-menus.php is the perfect hook for this metabox
// as we are only adding on nav menu page :)
add_action( 'load-nav-menus.php', 'obi_add_meta_box' );
function obi_add_meta_box() {
add_meta_box(
'obi-nav-metabox',
__( 'One Page Navigation', 'obi' ),
'obi_render_nav_metabox',
'nav-menus',
'side',
'core'
);
}
function obi_render_nav_metabox() {
echo '<strong>Hello World, This is Obi Plabon</strong>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment