Skip to content

Instantly share code, notes, and snippets.

@ericandrewlewis
Created November 9, 2012 19:49
Show Gist options
  • Save ericandrewlewis/4047805 to your computer and use it in GitHub Desktop.
Save ericandrewlewis/4047805 to your computer and use it in GitHub Desktop.
Retrieve total times an activity has been logged
$total = count( get_posts( array(
'post_type' => 'mvp-card',
'posts_per_page' => - 1,
'suppress_filters' => false,
'connected_direction' => 'from',
'connected_type' => 'activity-to-mvp-card',
'connected_items' => $activity_id
) ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment