Created
July 21, 2018 14:10
-
-
Save priyabratary/57e1c1b101da74669daa9431100b0f9c to your computer and use it in GitHub Desktop.
WordPress menu registration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'container_class' => 'footer-menu', 'items_wrap' => '<ul class="list-inline">%3$s</ul>', ) ); | |
?> | |
//footer menu | |
function register_footer_menu() { | |
register_nav_menu('footer-menu',__( 'Footer Menu' )); | |
} | |
add_action( 'init', 'register_footer_menu' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment