Count of Pending Testimonials

  1. // display a count of your testimonials in a specific category on the front-end
  2. // (Be sure to replace the_category_slug with your own Testimonial Category's slug)
  3. [testimonials_count status='any' category='the_category_slug']
  4.  
  5. // display a count of your Approved testimonials in a specific category on the front-end
  6. // (Be sure to replace the_category_slug with your own Testimonial Category's slug)
  7. [testimonials_count status='publish' category='the_category_slug']
  8.  
  9. // display a count of your Pending testimonials in a specific category on the front-end
  10. // (Be sure to replace the_category_slug with your own Testimonial Category's slug)
  11. [testimonials_count status='pending' category='the_category_slug']
  12.  
  13. // display a count of your Trashed testimonials in a specific category on the front-end
  14. // (Be sure to replace the_category_slug with your own Testimonial Category's slug)
  15. [testimonials_count status='trash' category='the_category_slug']