Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.09 KB

2013-12-09-add-menu-externally-wp-menu-list.md

File metadata and controls

48 lines (32 loc) · 1.09 KB
author comments date layout link slug title wordpress_id categories tags
Rakesh
true
2013-12-09 05:40:12 +0000
post
http://dlurratan37846/wordpress/?p=91
add-menu-externally-wp-menu-list
Add menu externally to wp menu list
91
Wordpress
add header menu externally in wordpress
add menu in wordpress
adding menu in wordpress
wordpress menu

For add menu externally in wordpress menu list add below code in your functions.php

add_filter( 'wp_nav_menu_items', 'myaccount_login_menu_item', 10, 2 );
function myaccount_login_menu_item ( $items, $args ) {
    if ($args->theme_location == 'secondaryhome') {
        $logout = wp_logout_url(site_url('?page_id=22'));
       $items .= '<li><a href="'.$logout.'">Logout</a></li>';
    }
    return $items;
}

where 'secondaryhome' is your menu name and $logout is your link herf

how to register a custom menu ;-

go to your functions.php

search for with named themename_setuup() function

add below code

register_nav_menu( 'secondaryhome', __( 'Secondary Navigation Menu', 'themename' ) );