Skip to content

Instantly share code, notes, and snippets.

@keithics
Created August 1, 2013 08:05
Show Gist options
  • Save keithics/6129386 to your computer and use it in GitHub Desktop.
Save keithics/6129386 to your computer and use it in GitHub Desktop.
Wp Menu
<?php
echo wp_menu_fix('main');
function wp_menu_fix($menu){
$menus = wp_get_nav_menu_items($menu);
// echo '<pre>';
// print_r($menus);
// echo '</pre>';
$menu = '';
$menu .= '<ul>';
foreach($menus as $m):
$menu .= '<li><a href="'.get_permalink($m->ID).'">'.$m->title.'</li>';
endforeach;
$menu .= '</ul>';
return $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment