Skip to content

Instantly share code, notes, and snippets.

@tokopress
Created August 6, 2015 07:38
Show Gist options
  • Save tokopress/50ea2a927d29ec9fffe6 to your computer and use it in GitHub Desktop.
Save tokopress/50ea2a927d29ec9fffe6 to your computer and use it in GitHub Desktop.
Marketica - Add Edit Profile Link to Account Menu
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