I have the following code:
$nav_menu_args = array('fallback_cb' => '','menu' => 'menu', 'menu_class' => 'menu_class');
$x = wp_nav_menu( apply_filters( 'widget_nav_menu_args', $nav_menu_args, 'menu', $args ) );
$pattern = '#<ul([^>]*)>#i';
$replacement = '<ul$1 data-attr="abc">'; // this is a wrong
echo preg_replace( $pattern, $replacement, $x );
I am trying to add a data-attr
to ul
by altering the pattern, and without making changes through Walker_Nav_Menu
.
What I want to do is to have a list like this:
<ul class="menu_class" data-attr="abc">
<li><li>
<li>
<ul>
<li></li>
</ul>
<li>
</ul>
But I get also a data-attr
on my inner ul like this.
<ul class="menu_class" data-attr="abc">
<li><li>
<li>
<ul data-attr="abc">
<li></li>
</ul>
<li>
</ul>
What am I missing?
You could add the number of objects you want to replace so it only takes the first
ul
.Or just change the items_wrap key of the wp_nav_menu.