wordpress nav menu arguments

WordPress nav menu arguments


<?php

$defaults = array(
	'theme_location'  => '',
	'menu'            => '',
	'container'       => 'div',
	'container_class' => '',
	'container_id'    => '',
	'menu_class'      => 'menu',
	'menu_id'         => '',
	'echo'            => true,
	'fallback_cb'     => 'wp_page_menu',
	'before'          => '',
	'after'           => '',
	'link_before'     => '',
	'link_after'      => '',
	'items_wrap'      => '
    %3$s
',
	'depth'           => 0,
	'walker'          => ''
);

wp_nav_menu( $defaults );

?>

Leave a Reply

Your email address will not be published. Required fields are marked *