Follow the below steps to create admin manu in Magento 2.
Step 1: Create menu.xml
Step 2: Add menu item
Step 3: Flush Magento cache Continue reading Magento 2 Create Admin Menu
Follow the below steps to create admin manu in Magento 2.
Step 1: Create menu.xml
Step 2: Add menu item
Step 3: Flush Magento cache Continue reading Magento 2 Create Admin Menu
<?php $topMenuItems = wp_get_nav_menu_items(‘header-top-menu’ ); ?>
<ul>
<?php foreach($topMenuItems as $topMenu) { ?>
<li><a href=”<?php echo $topMenu->url; ?>”><?php echo $topMenu->title; ?></a></li>
<?php } ?>
</ul>