Skip to content

Instantly share code, notes, and snippets.

@supercleanse
Created June 3, 2015 23:04
Show Gist options
  • Save supercleanse/f0ba9952aa6992a7ca03 to your computer and use it in GitHub Desktop.
Save supercleanse/f0ba9952aa6992a7ca03 to your computer and use it in GitHub Desktop.
List Active Memberships
<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