[Theme: Asokay] Secondary Menu
-
When I attempt to add a secondary menu to the footer, there is a warning that this theme only supports one menu.
I created functions.php (child)
/*
adding footer menu, second nav to child theme
*/
function asokay_setup() {
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
‘primary’ => __( ‘Primary Navigation’, ‘asokay’ ),
‘secondary’ => __( ‘Secondary Navigation’, ‘asokay’),
) );
}Then went to admin / appearance / menus. Create a second menu (click on + tab on top near “topmenu” we already created), I called it “footer menu”.
This is where the error occurred.
Anyone have some thoughts?
Paul
360True
- The topic ‘[Theme: Asokay] Secondary Menu’ is closed to new replies.