How to add tags in menu
-
Hi,
I wonder if you know how to add tag
<a>
in navbar menu for example:<nav class="m-nav"> <p class="text-mild-blue">Menu</p> <ul> <li><a href="/">Home</a></li> <li><a href="about/">About</a></li> <li><a href="courses/">Courses</a></li> <li><a href="news/">News</a></li> <li><a href="contact/">Contact</a></li> </ul> </nav>
header.php:
<nav class="m-nav"> <p class="text-mild-blue">Menu</p> <?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu', 'menu_class' => '', 'container' => 'ul', 'container_class'=> '' ) ); ?> </nav>
I would like to add tags into a class.
Thanks,
Shaun.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to add tags in menu’ is closed to new replies.