Skip to content

Instantly share code, notes, and snippets.

@sutandang
Created June 6, 2017 16:04
Show Gist options
  • Save sutandang/ea94c0c88fe6b18df0e3dd8f0224414e to your computer and use it in GitHub Desktop.
Save sutandang/ea94c0c88fe6b18df0e3dd8f0224414e to your computer and use it in GitHub Desktop.
add front end menu , programitically
function new_nav_menu_items($items) {
$homelink = '<li class="home"><a href="' . home_url( '/solutions' ) . '">' . __('Solutions') . '</a></li>';
$items = $homelink . $items;
return $items;
}
add_filter( 'wp_nav_menu_items', 'new_nav_menu_items' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment