Created
June 10, 2013 03:19
-
-
Save strangerstudios/5746321 to your computer and use it in GitHub Desktop.
Add Link to the Paid Memberships Pro Membership Account Page.
This file contains 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 a link to the membership account page. | |
Use the pmpro_member_links_bottom hook to add links to the end of the list. | |
*/ | |
function my_pmpro_member_links_top() | |
{ | |
?> | |
<li><a href="/name-of-your-page/">Title of Your Link</a></li> | |
<?php | |
} | |
add_action("pmpro_member_links_top", "my_pmpro_member_links_top"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment