Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Añadir clase a los elementos del menu */
- function cmdh_add_specific_menu_location_atts( $atts, $item, $args ) {
- // check if the item is in the primary menu
- if( $args->theme_location == 'primary' ) {
- // add the desired attributes:
- $atts['class'] = 'carlosmdh-menu-link-class';
- }
- return $atts;
- }
- add_filter( 'nav_menu_link_attributes', 'cmdh_add_specific_menu_location_atts', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment