Skip to content

Instantly share code, notes, and snippets.

@joecue
Last active August 29, 2015 14:25
Show Gist options
  • Save joecue/44898cb7b60263c81410 to your computer and use it in GitHub Desktop.
Save joecue/44898cb7b60263c81410 to your computer and use it in GitHub Desktop.
WordCamp Columbus 2015 - WP 201 - Demo Menu Plugin
<?php
/*
Plugin Name: Menu Demo Plugin
Description: WordCamp Columbus 2015 - Menu Demo
*/
/* Start Adding Functions Below this Line */
register_nav_menus( array(
'footer' => __( 'Footer Menu', 'twentyfifteen' ),
'left' => __( 'Left Menu', 'twentyfifteen' ),
) );
/* Stop Adding Functions Below this Line */
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment