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 -

how to prompt save As Box in Excel Interlop c# MVC 4 -

xslt 1.0 - How to access or retrieve mets content of an item from another item? -