C
by Luke Mlsna 5 (2 reviews)

Count Posts in a Category, Tag, or Custom Taxonomy

Adds a custom shortcode that returns the number of posts in a category, tag, or custom taxonomy. Accepts a slug (default), ID, or name as input and wo …

Count Posts in a Category, Tag, or Custom Taxonomy ranks #13,405 among WordPress.org plugins with 100+ active installations, is #355 of 1,982 in the Analytics category, a 5/5 rating from 2 reviews, and was last updated Jan 1, 2013. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 3.5 (Current: 7.1)
v3.1 Current Version v3.1
Updated 13 years ago Last Update on 01 Jan, 2013
Refreshed 12 hours ago Last Refreshed on
#355 of 1,982 in Analytics Top 25% by installs No update in over a year
View on WordPress.org
Rank
#13,405
+25 this week
Active Installs
100+
-44.4%
KW Avg Position
N/A
No change
Downloads
9.2K
+2 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (2 reviews)

Next Milestone 200

Total Progress 45%
100+ 200+
6,763
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 55 more installs to reach 200+

Rank Changes

13,378 13,398 13,417 13,437 13,456 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
13,323 13,358 13,393 13,428 13,463 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
Current #13,405
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
0 10 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
2 reviews
Overall 100%
5
2 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Security History

Source: WPVulnerability

No known vulnerabilities on record for Count Posts in a Category, Tag, or Custom Taxonomy. Checked 1 month ago.

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners and editors who want to display post counts on their pages. It solves the problem of manually tallying how many posts exist in a given category, tag, or custom taxonomy by providing a shortcode that returns the count dynamically.

  • Custom shortcode for post counts
  • Supports categories
  • Supports tags
  • Supports custom taxonomies
  • Accepts slug as input
  • Accepts ID as input
  • Accepts name as input

Frequently Asked Questions

Common questions about Count Posts in a Category, Tag, or Custom Taxonomy

You must insert the shortcode in location where you want to count to appear: (always replacing category-slug with an acutal slug name) For categories: * [cat_count slug="category-slug"] or for a tag: * [tag_count slug="tag-slug"] or for a custom taxonomy: * [tax_count tax="taxonomy-name" slug="taxonomy-slug"] The legacy shortcode assumes you are giving it slugs, but it can also accept category names or IDs: [ccp type="name" cat="Category Name"] [ccp type="id" cat="27"] or for a tag: * [ccp type="name" tag="Tag Name"] * [ccp type="id" tag="28"] With the new shortcodes, you can specify slug="", id="", or name="" directly. If more than one is given, posts are selected in that order.
As of version 3.1... Yes! You can specify more than 1 ID or slug by separating the values with commas. You have to use either ID or slug, not a combination of both. Also, you cannot use the name attribute (since a name may ostensibly contain commas naturally, unlike a slug or ID). So, for example, if you had 3 categories with the slugs "cat-1", "cat-2", and "cat-3" each with 10 posts, you could get the count for all three (it would return "30") using this shortcode: [cat_count slug="cat-1,cat-2,cat-3"] Thanks to Jack Brand for this excellent suggestion.
Make sure you're using the correct slug, sometimes they are different from the actual category name and capitalization matters. You can view them by clicking on the Categories link under Posts. Also don't literally copy "category-slug," you need to put the category you want counted there, that's just a place holder. So to count the number of posts in a category called 'Book Reviews' with a slug name of 'book-reviews' you would insert [cat_count slug="book-reviews"].
The shortcodes without underscores are legacy shortcodes, I left them in the plugin so stuff won't break, but you should use the new shortcodes if possible. The legacy shortcodes include: [ccp] [catcountposts] [countposts] [countpost] [postsincat] [postincat] The legacy shortcodes only work for categories and tags, and they all follow the format [ccp type="slug/id/name" cat="category-slug/id/name" tag="tag-slug/id/name"] The NEW shortcodes all have underscores, and follow a slightly different format. There are 3 seperate shortcodes: For Categories: * [cat_count slug="cat-slug"] or [cat_count id="45"] or [cat_count name="Category Name"] For Tags: * [tag_count {slug="tag-slug"} {id="45"} {name="tag name"} ] For Custom Taxonomies: * [tax_count tax="custom-tax-type" {slug="tax-slug"} {id="99"} {name="Taxonomy Item Name"} ] You only need to specify 1 of the following: slug="", id="", or name="". If you specify more than one, the plugin will ignore the other attributes in the order of slug > id > name. You also need to specify the tax="custom-tax-type" for the [tax_count] shortcode. This is so the plugin knows which custom taxonomy to count.
Can I? Yes. Will I? Yes, if I think it would be a helpful addition. I'm trying to keep things clean and simple, but there's always room for improvement, so let me know if you think a feature is lacking!

Sign In / Register

You need to sign in or register to use this feature.