Skip to content

Instantly share code, notes, and snippets.

@geoffduke
Last active October 15, 2018 15:24
Show Gist options
  • Save geoffduke/e1cddce9450f052b7081f321aed52cad to your computer and use it in GitHub Desktop.
Save geoffduke/e1cddce9450f052b7081f321aed52cad to your computer and use it in GitHub Desktop.
Wordpress Dynamic Footer
<!-- In the functions file first add the footer menu location function -->
function band_features(){
register_nav_menu('footerLocationOne', 'Footer Location One');
};
add_action('after_setup_theme', 'band_features');
<!-- in the footer page add where required -->
?>
<?php
wp_nav_menu(array(
'theme_location' => "footerLocationOne",
))
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment