Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active December 12, 2018 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanaf1979/c00a2deb5a324a92b5727505fa2996b1 to your computer and use it in GitHub Desktop.
Save vanaf1979/c00a2deb5a324a92b5727505fa2996b1 to your computer and use it in GitHub Desktop.
Echo a basic wordpress menu (readable version)
/* Echo a basic wordpress menu */
<?php
$args = array(
'depth' => 0,
'sort_column' => 'menu_order',
'menu_class' => 'mainmenu',
'include' => '',
'exclude' => '',
'echo' => true,
'show_home' => 'Home',
'link_before' => '',
'link_after' => ''
);
wp_page_menu( $args );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment