Wordpress WordPress Get Menu Items January 22, 2017 Pramod T P Leave a comment <?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>