Created
August 6, 2015 07:38
-
-
Save tokopress/50ea2a927d29ec9fffe6 to your computer and use it in GitHub Desktop.
Marketica - Add Edit Profile Link to Account Menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'tokopress_quicknav_account', 'mycustom_quicknav_account_editprofile', 10 ); | |
function mycustom_quicknav_account_editprofile() { | |
/* only logged in user can see it */ | |
if ( ! is_user_logged_in() ) | |
return; | |
?> | |
<li><a href="<?php echo admin_url('profile.php'); ?>">Edit Profile <i class="fa fa-shopping-cart"></i> </a></li> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment