Answers for "custom top navigation bar wordpress"

PHP
0

Displaying Custom Navigation Menus in WordPress Themes

<?php
wp_nav_menu( array( 
    'theme_location' => 'my-custom-menu', 
    'container_class' => 'custom-menu-class' ) ); 
?>
Posted by: Guest on October-29-2020
0

add top menu bar in wordpress

function register_my_menu() {
register_nav_menu('additional-menu',__( 'Additional Menu' ));
}
add_action( 'init', 'register_my_menu' );
Posted by: Guest on October-29-2020

Code answers related to "custom top navigation bar wordpress"

Browse Popular Code Answers by Language