Wishlist URL
-
Hello,
I have this code in my theme’s header and want to add the My Wishlist and Cart page links.
<div class="top-right"> <ul><?php if(!is_user_logged_in()): ?> <li><a title="<?php _e('Login', 'iamd_text_domain'); ?>" href="<?php echo wp_login_url(get_permalink()); ?>"> <span class="fa fa-sign-in"></span><?php _e('Login', 'iamd_text_domain'); ?> </a></li> <li><a title="<?php _e('Register Now', 'iamd_text_domain'); ?>" href="<?php echo wp_registration_url(); ?>"> <span class="fa fa-user"></span> <?php _e('Register Now', 'iamd_text_domain'); ?> </a></li><?php else: ?> <li><a title="<?php _e('Logout', 'iamd_text_domain'); ?>" href="<?php echo wp_logout_url(get_permalink()); ?>"> <span class="fa fa-sign-out"></span> <?php _e('Logout', 'iamd_text_domain'); ?> </a></li><?php endif; ?> </ul> </div>
Could you please to help me?
Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Wishlist URL’ is closed to new replies.