/my_pmpro_member_links.php
Forked from strangerstudios/my_pmpro_member_links
Last active Mar 29, 2020
Example of how to add links to the Member Links list on the Membership Account page.
<?php | |
/** | |
* Example of how to add links to the Member Links list on the Membership Account page. | |
* | |
*/ | |
// Add links to the top of the list | |
function my_pmpro_member_links_top() { | |
//Add the level IDs here | |
if ( pmpro_hasMembershipLevel( array(1,2,3 ) ) ) { | |
//Add the links in <li> format here ?> | |
<li><a href="/top/">My Member Link Top</a></li> | |
<?php | |
} | |
} | |
add_filter( 'pmpro_member_links_top','my_pmpro_member_links_top' ); | |
// Add links to the bottom of the list | |
function my_pmpro_member_links_bottom() { | |
//Add the level IDs here | |
if ( pmpro_hasMembershipLevel( array( 1,2,3 ) ) ) { | |
//Add the links in <li> format here ?> | |
<li><a href="/bottom/">My Member Link Bottom</a></li> | |
<?php | |
} | |
} | |
add_filter( 'pmpro_member_links_bottom','my_pmpro_member_links_bottom' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment