Define a new wordpress menu and retrieve

Arun - 22/09/2020 11:26 PM

Files 2

functions.pgp
php
<?php

//define menu

function custom_new_menu() {
  register_nav_menu('svg-icon-menu',__( 'SVG Icons menu' ));
}
add_action( 'init', 'custom_new_menu' );

header.php
php
<?php

//can be called anywhere to show menu


wp_nav_menu( array( 
    'theme_location' => 'svg-icon-menu', 
    'container_class' => 'menu-svg-icons' ) );