Skip to content

Instantly share code, notes, and snippets.

@8lane
Created July 14, 2014 10:30
Show Gist options
  • Select an option

  • Save 8lane/185b13aa521d349cfd1c to your computer and use it in GitHub Desktop.

Select an option

Save 8lane/185b13aa521d349cfd1c to your computer and use it in GitHub Desktop.
Get total amount of tickets from WooThemes SupportPress theme
function totalTickets() {
global $wpdb;
$wpdb->set_blog_id(2);
$wpdb->set_prefix($wpdb->base_prefix);
$countTickets = count( get_posts( array('post_type'=>'ticket','nopaging' => true)));
$wpdb->set_blog_id(1);
return $countTickets;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment