Created
June 3, 2015 23:04
-
-
Save supercleanse/f0ba9952aa6992a7ca03 to your computer and use it in GitHub Desktop.
List Active Memberships
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
<h3>Active Subscriptions</h3> | |
<ul> | |
<?php | |
if($user = MeprUtils::get_currentuserinfo()) { | |
$active_products = $user->active_product_subscriptions('products'); | |
foreach($active_products as $active_product) { | |
?> | |
<li><?php echo $active_product->post_title; ?></li> | |
<?php | |
} | |
} | |
?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment