Answers for "add custom css for top navigation menu wordpress"

PHP
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
0

How to Add Custom Navigation Menus in WordPress Themes

function wpb_custom_new_menu() {
  register_nav_menu('my-custom-menu',__( 'My Custom Menu' ));
}
add_action( 'init', 'wpb_custom_new_menu' );
Posted by: Guest on October-08-2021

Browse Popular Code Answers by Language