Skip to content

Instantly share code, notes, and snippets.

@cabans
Last active March 13, 2016 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cabans/57942161f01b6039b37d to your computer and use it in GitHub Desktop.
Save cabans/57942161f01b6039b37d to your computer and use it in GitHub Desktop.
Walker handler for WordPress navigation menus to remove white spaces between <li> tags
<?php
/**
* > Nav menus without break lines
* Cleans white spaces and breaklins after li element
*/
class Theia_Nav_Menu_Walker extends Walker_Nav_Menu
{
function end_el( &$output, $item, $depth = 0, $args = array() ) {
$output .= '</li>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment