Created
October 22, 2015 04:17
-
-
Save torounit/dcd0032e775763ee7349 to your computer and use it in GitHub Desktop.
wp_nav_menu で出力される li タグに任意の class を設定する。
This file contains 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
<?php | |
add_filter( 'nav_menu_css_class', function ( $classes, $item, $args ) { | |
if ( ! empty( $args->li_class ) ) { | |
$classes[] = $args->li_class; | |
} | |
return $classes; | |
}, 10, 3 ); |
This file contains 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
<?php | |
wp_nav_menu( [ | |
'theme_location' => 'primary', | |
'li_class' => 'p-navigation__item', | |
] ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment