Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Last active April 24, 2020 20:26
Show Gist options
  • Select an option

  • Save vfontjr/3c73cd090031f7e902edcc39683e76b7 to your computer and use it in GitHub Desktop.

Select an option

Save vfontjr/3c73cd090031f7e902edcc39683e76b7 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wp_nav_menu_args', 'my_custom_ul_class' );
function my_custom_ul_class( $args ) {
$args['menu_class'] .= ' my-custom-class'; return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment