Created
November 27, 2013 12:50
-
-
Save Clorith/7675143 to your computer and use it in GitHub Desktop.
wp_nav_menu_items filter example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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