Created
October 10, 2013 20:15
-
-
Save supercleanse/6924834 to your computer and use it in GitHub Desktop.
List MemberPress product access urls in a page template.
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
<?php | |
if(MeprUtils::is_user_logged_in()) | |
{ | |
$user = MeprUtils::get_currentuserinfo(); | |
$products = $user->active_product_subscriptions('products'); | |
foreach($products as $product) { | |
if( !empty( $product->access_url ) ) { | |
?> | |
<a href="<?php echo $product->access_url; ?>"><?php echo $product->post_title; ?></a><br/> | |
<?php | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment