Skip to content

Instantly share code, notes, and snippets.

@torounit
Created October 22, 2015 04:17
Show Gist options
  • Save torounit/dcd0032e775763ee7349 to your computer and use it in GitHub Desktop.
Save torounit/dcd0032e775763ee7349 to your computer and use it in GitHub Desktop.
wp_nav_menu で出力される li タグに任意の class を設定する。
<?php
add_filter( 'nav_menu_css_class', function ( $classes, $item, $args ) {
if ( ! empty( $args->li_class ) ) {
$classes[] = $args->li_class;
}
return $classes;
}, 10, 3 );
<?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