Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save babelpuntocl/38c3fd65b6a70cbf2190 to your computer and use it in GitHub Desktop.
Save babelpuntocl/38c3fd65b6a70cbf2190 to your computer and use it in GitHub Desktop.
// Add ID and CLASS attributes to the first <ul> occurence in wp_page_menu
function add_menuclass( $ulclass ) {
return preg_replace( '/<ul>/', '<ul id="nav" class="something-classy">', $ulclass, 1 );
}
add_filter( 'wp_page_menu', 'add_menuclass' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment