B
by Bainternet
0 (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.0 (Current: 6.8.2)
v1.5.2
Current Version v1.5.2
Updated 9 years ago
Last Update on 13 Dec, 2016
Synced 6 days ago
Last Synced on
Rank
#35,125
—
No change
Active Installs
10+
—
No change
KW Avg Position
N/A
—
No change
Downloads
7.5K
+1 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 20
10+
20+
9,487
Ranks to Climb
-
Growth Needed
8,000,000
Current 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 20+
Rank Changes
Current
#35,125
Change
Best
#
Active Installs Growth
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.5.2
- Last Updated
- Dec 13, 2016
- Requires WP
- 2.9.2+
- Tested Up To
- 4.7.0
- PHP Version
- N/A
- Author
- Bainternet
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 NowFrequently Asked Questions
Common questions about Bainternet User Ranks
[user-firstname] [user-lastname]
[title]
[points]
[/user_rank]
[title]
[points]
[/user_rank]
[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
How Can I Use the Top ranked template tag?
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 is happening, whats Wrong?
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
Why do i get just the points?
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
Hot can i get top ranked users?
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'];
}
?>
[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
How Can I Use the Top ranked template tag?
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 is happening, whats Wrong?
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
Why do i get just the points?
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
Hot can i get top ranked users?
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'];
}
?>