Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created November 27, 2013 12:50
Show Gist options
  • Save Clorith/7675143 to your computer and use it in GitHub Desktop.
Save Clorith/7675143 to your computer and use it in GitHub Desktop.
wp_nav_menu_items filter example
<?php
function theme_menu_append( $items ) {
$prepend = "";
$append = "";
$prepend .= "<li>First item always!</li>";
$append .= "<li>This is the 2nd to last item</li>";
$append .= "<li>This is the very last item</li>";
$items = $prepend . $items . $append;
return $items;
}
add_filter( 'wp_nav_menu_items', 'theme_menu_append' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment