Created
March 14, 2017 13:19
-
-
Save raisiqueira/a07b79bcd7ca1d563437bf9c7eb1e187 to your computer and use it in GitHub Desktop.
Custom class menu item WordPress
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
<?php | |
function rs_menu_classes( $classes, $item, $args ) { | |
if($args->theme_location == 'primary') { | |
$classes[] = 'list-inline-item'; | |
} | |
return $classes; | |
} | |
add_filter( 'nav_menu_css_class','atg_menu_classes',1,3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment