Skip to content

Instantly share code, notes, and snippets.

@cagartner
Forked from jameskoster/header.php
Created July 6, 2016 20:04
Show Gist options
  • Save cagartner/4afc19ddd528a60258d5695e4d0326eb to your computer and use it in GitHub Desktop.
Save cagartner/4afc19ddd528a60258d5695e4d0326eb to your computer and use it in GitHub Desktop.
WooCommerce - My Account link
<?php if ( is_user_logged_in() ) { ?>
<a href="<?php echo get_permalink( get_option('woocommerce_myaccount_page_id') ); ?>" title="<?php _e('My Account','woothemes'); ?>"><?php _e('My Account','woothemes'); ?></a>
<?php }
else { ?>
<a href="<?php echo get_permalink( get_option('woocommerce_myaccount_page_id') ); ?>" title="<?php _e('Login / Register','woothemes'); ?>"><?php _e('Login / Register','woothemes'); ?></a>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment