A
by lienann
4.4 (8 reviews)
ACF: Star Rating Field
"Star rating" field. Add-on to Advanced Custom Fields plugin.
Tested up to WP 4.1.42 (Current: 6.9.4)
v1.0.2
Current Version v1.0.2
Updated 11 years ago
Last Update on 22 Mar, 2015
Refreshed 6 hours ago
Last Refreshed on
Rank
#11,242
—
No change
Active Installs
300+
—
No change
KW Avg Position
70
—
No change
Downloads
8.8K
+3 today
Support Resolved
0%
—
No change
Rating
88%
Review 4.4 out of 5
4.4
(8 reviews)
Next Milestone 400
300+
400+
975
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 71 more installs to reach 400+
Rank Changes
Current
#11,242
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
4.4
8 reviews
Overall
88%
5
4
(50%)
4
3
(38%)
3
1
(13%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| acf4 | 3 | — | Tag | 1 day ago |
| star rating | 137 | — | Tag | 1 day ago |
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.2
- Last Updated
- Mar 22, 2015
- Requires WP
- 3.5+
- Tested Up To
- 4.1.42
- PHP Version
- N/A
- Author
- lienann
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.4
- Reviews
- 8
- 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,717
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
Crowdsignal Forms
100K+ installs
#285
Crowdsignal Dashboard – Polls, Surveys & more
100K+ installs
#292
WP Popular Posts
100K+ installs
#315
Frequently Asked Questions
Common questions about ACF: Star Rating Field
Add the_field($field_key, $post_id) or get_field($field_key, $post_id) into page template where it is necessary for you (use $field_name only, if you are sure that field value exists): <?php // add fields in the Loop if ( have_posts() ) { while ( have_posts() ) { the_post(); if ( function_exists( 'the_field' ) ) { the_field( 'quality', $post->ID ); } the_content(); } // end while } // end if ?> <?php // display rating field for post_id=123 if ( function_exists( 'the_field' ) ) { the_field( 'interest', '123' ); the_field( 'field_62ad11se531h', '123' ); } ?> <?php // display rating field of user_id = 1 // to pass $post_id value use 'user_' + user ID format if ( function_exists( 'get_field' ) ) { $field = get_field( 'field_53ac25b2e521', 'user_1' ); echo $field; } ?> For detailed information about this functions see ACF documentation.
Use get_field() function of ACF plugin (with the third option = FALSE), to display vote result on the page: