submenu - Wordpress login logout menu with sub menus -


i try make word press site self. need add login main nav-menu. sub menu "register" (link http://www.vcanade.ca/register/)

after user logged in, menu has change username sub menus "profile" (link http://www.vcanade.ca/your-profile/) , "logout"

does can me?

put of buttons on nav menu ('register','profile','logout').

give each button unique id , use css rules hide inappropriate buttons:

body.logged-in #my-register-button {   display: none; } body:not(.logged-in) #my-register-button {   display: inline-block; } 

this works because native wordpress gives body tag class "logged-in" whenever user logged in.


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -