B
by Bainternet
1 (0 reviews)
Bainternet User Ranks
Create and display user rank titles based on there post count, comment count or both.
Tested up to WP 4.7 (Current: 7.0.1)
v1.5.2
Current Version v1.5.2
Updated 9 years ago
Last Update on 13 Dec, 2016
Refreshed 6 hours ago
Last Refreshed on
Rank
#45,419
+85 this week
Active Installs
10+
-16.7%
KW Avg Position
54
—
No change
Downloads
7.6K
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
40,402
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 10 more installs to reach 20+
Rank Changes
Current
#45,419
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
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| user karma | 13 | — | Tag | 10 hours ago |
| forum like ranking | 63 | — | Tag | 10 hours ago |
| post and comments ranking | 86 | — | Tag | 10 hours 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.5.2
- Last Updated
- Dec 13, 2016
- Requires WP
- 2.9.2+
- Tested Up To
- 4.7
- PHP Version
- N/A
- Author
- Bainternet
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Bainternet User Ranks
Simple just add [user_rank] in your post content and if you want to get the rank of another user (default is post author) then just set user_id to the id of the user who's rank you want eg: [user_rank user_id="23"]
Once again very simple just add [user_rank_top] which will get you a list of top 5 ranked users, you can change the number , item wrapper and container eg: [user_rank_top number="20" container="ol" item_wrapper="li"]
Both Shortcodes use a simple templating system which takes tokens and replaces them with the user data eg: [user_rank] [user-firstname] [user-lastname] [title] [points] [/user_rank] Just make sure you enter the template after the shortcode tag and add aclosing tag.
[title] - prints the user's rank title [points] - prints the user's points [user_login] - prints the user's login [user_nicename] - prints the user's nicename [user_email] - prints the user's email [user_url] - prints the user's URL [user_firstname] - prints the user's First name [user_lastname] - prints the user's last name [user_description] - prints the user's description/bio
get_top_users($number); foreach($top_users as $u){ $user_info = get_userdata($u['user_id']); echo "User: ".$user_info->user_login. " Points: " . $u['points]. " Title: ". $u['title']. ""; }?>
Nothing you just need to call the plugin in your theme file something like this: <?php $baur_plugin = new baur_Plugin(); $user_rank = $baur_plugin->ba_get_user_points($user_id); echo "Points: " . $user_rank;?> And you must set $user_id
You need to pass another parameter to the 'ba_get_user_points' function (Boolean , default false) to get an array that contains both Title and Points. ba_get_user_points($user_id,true); echo "title: ". $user_rank['title'] . "Points: " . $user_rank['points'];?> Once again you must set $user_id
use get_top_users method with the number of top users you want , for example to get the top 5 use: get_top_users(5); foreach ($top_users as $user){ $user_info = get_userdata($user['user_id']); echo $user_info->user_login . " title: ". $user_rank['title'] . "Points: " . $user_rank['points']; } ?>