Skip to content

Instantly share code, notes, and snippets.

@prestarocket
Created July 11, 2011 08:57
Show Gist options
  • Save prestarocket/1075565 to your computer and use it in GitHub Desktop.
Save prestarocket/1075565 to your computer and use it in GitHub Desktop.
wordpress : add last class to menu item
/* Add last_item class to last li in wp_nav_menu lists*/
function add_last_item_class($strHTML) {
$intPos = strripos($strHTML,'menu-item');
printf("%s last_item %s",
substr($strHTML,0,$intPos),
substr($strHTML,$intPos,strlen($strHTML))
);
}
add_filter('wp_nav_menu','add_last_item_class');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment