Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add data attribute to wp_nav_menu

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?

like image 516
sfirc Avatar asked Dec 20 '22 03:12

sfirc


1 Answers

You could add the number of objects you want to replace so it only takes the first ul.

echo preg_replace( $pattern, $replacement, $x, 1 ); // 1 at the end to replace only the first occurence

Or just change the items_wrap key of the wp_nav_menu.

$nav_menu_args = array('fallback_cb' => '','menu' => 'menu', 'items_wrap' => '<ul class="menu_class" data-attr="abc">%3$s</ul>');
like image 84
TeeDeJee Avatar answered Dec 21 '22 22:12

TeeDeJee