Skip to content

Instantly share code, notes, and snippets.

@jsonberry
Created February 19, 2016 20:17
Show Gist options
  • Save jsonberry/d33e97b4e81d49041e66 to your computer and use it in GitHub Desktop.
Save jsonberry/d33e97b4e81d49041e66 to your computer and use it in GitHub Desktop.
WordPress -> Custom Menu Area function, add to functions.php
<?php
function register_my_menus()
{
register_nav_menus(
array(
'footer-menu' => __( 'Footer Menu' )
)
);
}
add_action( 'init', 'register_my_menus');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment