Removing DIV-Wrap (Navigation)
-
Hi everybody,
I have a problem with removing the “div”-Wrap in my template.
I don’t know why it doesn’t work:functions.php:
if (!function_exists('my_template')): function my_template() { register_nav_menus(array( 'primary' => __('Primary Navigation', 'my_template'), )); } endif; function template_nav_menu_args( $args = '' ) { $args['show_home'] = true; $args['container_class'] = false; $args['container'] = ""; return $args; } add_filter( 'wp_nav_menu_args', 'template_nav_menu_args' );template:
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Removing DIV-Wrap (Navigation)’ is closed to new replies.