S
by denizozsen
0 (0 reviews)
Select Primary Category
Adds the ability to designate a primary category for posts and custom post types.
Compatibility unknown
v1.0
Current Version v1.0
Updated 7 years ago
Last Update on 13 Jun, 2018
Refreshed 6 hours ago
Last Refreshed on
Rank
#45,629
—
No change
Active Installs
0+
-100%
KW Avg Position
N/A
—
No change
Downloads
1.2K
—
Total downloads
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
14,814
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
Need 6 more installs to reach 10+
Rank Changes
Current
#45,629
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0
- Last Updated
- Jun 13, 2018
- Requires WP
- 4.5+
- Tested Up To
- 0
- PHP Version
- N/A
- Author
- denizozsen
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,720
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
WP-Sweep
100K+ installs
#286
Recent Posts Widget With Thumbnails
100K+ installs
#334
Content Views - Post Grid & Filter, Recent Posts, Category Posts ... (Shortcode, Gutenberg Blocks, and Widgets for Elementor)
100K+ installs
#368
Frequently Asked Questions
Common questions about Select Primary Category
You can use either of them. E.g. assuming a category with ID 3, slug 'ground-coffee' and name 'Ground Coffee'. the following shortcode definitions will all work: [posts_by_primary_category category="3"] [posts_by_primary_category category="ground-coffee"] [posts_by_primary_category category="Ground Coffee"] Developers' Notes If you want to fetch posts belonging to a particular category (or, more generally, belonging to a particular term) you can use this: if ( class_exists( 'SPC_Queries' ) ) { /* * Let's fetch 10 published posts with primary category set to category ID 2. */ $spc_queries = SPC_Infrastructure_Container::get_instance()->get( 'SPC_Queries' ); $posts = $spc_queries->get_primary_term_posts( 2, array( 'post_status' => 'publish', 'posts_per_page' => 10, 'post_type' => 'post', ) ); } You can just as well pass a category slug or name, instead of its ID, if you prefer.