Skip to content

Instantly share code, notes, and snippets.

@ronalfy
Created December 10, 2015 21:13
Show Gist options
  • Save ronalfy/be933e0e1ce5061faf19 to your computer and use it in GitHub Desktop.
Save ronalfy/be933e0e1ce5061faf19 to your computer and use it in GitHub Desktop.
Add new line back into LI
/* Place in header just above where you output your menu */
<?php
class nest_nav_menu extends Walker_Nav_Menu {
function end_el( &$output, $item, $depth = 0, $args = array() ) {
$output .= "</li>\n";
}
}
?>
<?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'walker' => new nest_nav_menu ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment