M
M
MRcracker2020-04-21 17:09:39
WordPress
MRcracker, 2020-04-21 17:09:39

How to add class to wordpress menu?

How to add class to wordpress menu?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry Komchev, 2020-04-21
@MRcracker

When displaying the menu, add the desired class

<?php
wp_nav_menu( array(
    'theme_location'  => 'header-menu',
    'container'       => false,  // без обёртки (можно div, nav)
    'container_class' => '',     // класс обёртки
    'menu_class'      => '',     // класс у ul
) );
?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question