I have a custom login and register page and on that I have a sidebar. I'd like to be able to call the "login" sidebar if on the login page and the "register" sidebar if on the register page. Is there any way I can do a if else statement for this?
I have a custom login and register page and on that I have a sidebar. I'd like to be able to call the "login" sidebar if on the login page and the "register" sidebar if on the register page. Is there any way I can do a if else statement for this?
Thanks - I have looked at this page which is why I then asked on this forum whether there was a way of doing it as I couldn't find a if login or register tag on that page?
<?php if( is_page('Login') ) get_sidebar('login');
elseif( is_page('Register') ) get_sidebar('register');?>
This topic has been closed to new replies.