0
votes

i Download and activate theme but i find that there is no way with setting to add links to footer menu because its support only one header menu

i download the Genesis Simple Menus from here https://wordpress.org/plugins/genesis-simple-menus/ and add this code in the functions.php file :-

// display the Footer Navigation
add_action('genesis_before_footer', 'wdm_add_footer_menu');
function wdm_add_footer_menu()
{
    wp_nav_menu(array(
     'sort_column' => 'menu_order',
     'container_id' => 'footer' ,
     'menu_class' => 'menu-tertiary',
     'theme_location' => 'footer',
     'depth' => 1,
     'items_wrap'  => '<ul id="%1$s" class="%2$s">%3$s</ul>'
      ) );
} 

but nothing happened is that anyway to make this theme have footer location menu???

2

2 Answers

0
votes

Add register_nav_menu('footer', 'Footer Menu'); in your functions.php See this for details: https://codex.wordpress.org/Function_Reference/register_nav_menu

0
votes