This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*-------------- Creating custom menu with BEM classes :) ----------------*/ | |
// Change main menu parameters | |
add_filter( 'wp_nav_menu_args', 'filter_wp_menu_args' ); | |
function filter_wp_menu_args( $args ) { | |
if ( $args['theme_location'] === 'header-menu' || 'blog-menu' ) { | |
$args['container'] = false; | |
$args['items_wrap'] = '<ul class="%2$s">%3$s</ul>'; | |
$args['menu_class'] = 'menu__list'; | |
} |
NewerOlder