• I am trying to remove the div from the wp_nav_menu function.The codex offers some examples for which I’ve tried but none of them are working.

    I am developing a theme on WP 3.1.2. It’s a blank install with no plugins. Any help would be appreciated!

Viewing 1 replies (of 1 total)
  • Thread Starter haydenhancock

    (@haydenhancock)

    BTW, I’ve tried:

    function my_wp_nav_menu_args( $args = '' )
    {
    	$args['container'] = false;
    	return $args;
    } // function
    
    add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' );
    <?php wp_nav_menu( array( 'container' => '' ) ); ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Removing DIV from wp_nav_menu’ is closed to new replies.