Skip to content

Instantly share code, notes, and snippets.

View sebvandijk's full-sized avatar

Seb van Dijk sebvandijk

View GitHub Profile
<?php
add_theme_support('menus');
/*
http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples
*/
register_nav_menus(array(
'top-bar-l' => 'Left Top Bar', // registers the menu in the WordPress admin menu editor
'top-bar-r' => 'Right Top Bar'
));