Remove p tag from allowed nav menu container tags. Cannot validly contain block level elements. props Jorbin, fixes #13349.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5a1f1bd685
commit
0f377dabc0
|
@ -234,7 +234,7 @@ function wp_nav_menu( $args = array() ) {
|
|||
|
||||
$nav_menu = '';
|
||||
$items = '';
|
||||
$container_allowedtags = apply_filters( 'wp_nav_menu_container_allowedtags', array( 'div', 'p', 'nav' ) );
|
||||
$container_allowedtags = apply_filters( 'wp_nav_menu_container_allowedtags', array( 'div', 'nav' ) );
|
||||
|
||||
if ( in_array( $args->container, $container_allowedtags ) ) {
|
||||
$class = $args->container_class ? ' class="' . esc_attr($args->container_class) . '"' : ' class="menu-'. $menu->slug .'-container"';
|
||||
|
|
Loading…
Reference in New Issue