Skip to content

Instantly share code, notes, and snippets.

@shaynesanderson-zz
Created May 14, 2013 01:18
Show Gist options
  • Save shaynesanderson-zz/5572902 to your computer and use it in GitHub Desktop.
Save shaynesanderson-zz/5572902 to your computer and use it in GitHub Desktop.
Add class to first menu item
<?php
function nav_menu_first_last( $items ) {
$position = strrpos($items, 'class="menu-item', -1);
$items=substr_replace($items, 'menu-item-last ', $position+7, 0);
$position = strpos($items, 'class="menu-item');
$items=substr_replace($items, 'menu-item-first ', $position+7, 0);
return $items;
}
add_filter( 'wp_nav_menu_items', 'nav_menu_first_last' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment