Created
July 14, 2014 10:30
-
-
Save 8lane/185b13aa521d349cfd1c to your computer and use it in GitHub Desktop.
Get total amount of tickets from WooThemes SupportPress theme
This file contains hidden or 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
| 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