Wordpress Snippets
2022-11-15
Menus
functions.php
after_setup_theme
:
register_nav_menu('footerLocationTwo', 'Footer Location Two');
footer.php:
<?php
wp_nav_menu(array('theme_location' => 'footerLocationTwo'));
?>
functions.php
after_setup_theme
:
register_nav_menu('footerLocationTwo', 'Footer Location Two');
footer.php:
<?php
wp_nav_menu(array('theme_location' => 'footerLocationTwo'));
?>