Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.     //creeaza obiectul clasei
  3.     $myMenuWalker = new Custom_Menu_Walker();
  4.    
  5.     //parcurge meniul cu id-ul 4, pentru a genera itemii
  6.     wp_nav_menu(array('walker'=>$myMenuWalker, 'container'=>null, 'menu_class'=>'topmost_menu', 'menu'=>4, 'echo'=>false));
  7.                
  8.     if(count($myMenuWalker->ArrayItems)):
  9.     //afiseaza meniul
  10. ?>
  11.     <ul class="custom_menu">
  12.         <?php foreach ($myMenuWalker->ArrayItems as $item):?>
  13.         <li><a href="<?=$item['url']?>"><?=$item['title']?></a></li>
  14.         <li>&nbsp;/&nbsp;</li>
  15.         <?php endforeach;?>
  16.         <li><a href="#myCustomId" target="_self">Un link in plus</a></li>
  17.     </ul>
  18. <?php endif;?>