Skip to content

Instantly share code, notes, and snippets.

@supercleanse
Created October 10, 2013 20:15
Show Gist options
  • Save supercleanse/6924834 to your computer and use it in GitHub Desktop.
Save supercleanse/6924834 to your computer and use it in GitHub Desktop.
List MemberPress product access urls in a page template.
<?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