N
by WP Ninjas 5 (2 reviews)

Nike+

Nike+ lets you brag about you and your teams running progress by displaying your stats right on your WordPress website with widgets & shortcodes.

Nike+ ranks #47,301 among WordPress.org plugins with 10+ active installations, is #3,715 of 8,590 in the Customization category, a 5/5 rating from 2 reviews, and was last updated Apr 9, 2014. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 3.9 (Current: 7.1.2)
v1.1 Current Version v1.1
Updated 12 years ago Last Update on 09 Apr, 2014
Refreshed 10 hours ago Last Refreshed on
#3,715 of 8,590 in Customization Top 50% by installs No update in over a year
View on WordPress.org
Rank
#47,301
-228 this week
Active Installs
10+
-23.1%
KW Avg Position
12.5
No change
Downloads
3.3K
+2 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (2 reviews)

Next Milestone 20

Total Progress 0%
10+ 20+
34,039
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 10 more installs to reach 20+

Rank Changes

33,173 37,166 41,159 45,151 49,144 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
33,173 37,166 41,159 45,151 49,144 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 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #47,301
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 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 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 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-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%)

Frequently Asked Questions

Common questions about Nike+

You can use the Nike+ Individual Totals Widget, the [individual_totals] shortcode, or the nikeplus_individual_totals() function. Below are all the default options and how to use the shortcode and function. Defaults $defaults = array( 'runner' => '', // accepts a single user_id 'show_list' => false, 'show_name' => false, 'show_runs' => true, 'show_distance' => true, 'show_duration' => true, 'show_pace' => true, 'show_fuel' => true, 'show_calories' => true, ); In this example we have chosen to use the shortcode to show the totals for user_id 1 as an unordered list and without showing total fuel. Everything else was left with the default options. 1 being true and 0 being false. [individual_totals runner=1 show_list=1 show_fuel=0] To do the same thing with the function you would simply pass an array of arguments to the function and echo it. It would look like this. $args = array( 'runner' => 1, 'show_list' => 1, 'show_fuel' => 0, ); echo nikeplus_individual_totals( $args );
You can use the Nike+ Personal Records Widget, the [personal_records] shortcode, or the nikeplus_personal_records() function. Below are all the default options and how to use the shortcode and function. Defaults $defaults = array( 'runner' => '', // accepts a single user_id 'show_list' => false, 'show_name' => false, 'show_1k' => false, 'show_1m' => true, 'show_5k' => true, 'show_10k' => true, 'show_half' => false, 'show_full' => false, 'show_farthest' => true, 'show_longest' => true, 'show_calories' => false, ); In the example below we have chosen to use the shortcode to show the records for user_id 3 our Half Marathon record bu not showing our longest run. Everything else was left with the default options. 1 being true and 0 being false. [personal_records runner=3 show_half=1 show_longest=0] To do the same thing with the function you would simply pass an array of arguments to the function and echo it. It would look like this. $args = array( 'runner' => 3, 'show_half' => 1, 'show_longest' => 0, ); echo nikeplus_personal_records( $args );
You can use the Nike+ List Runs Widget, the [list_runs] shortcode, or the nikeplus_list_runs() function. Below are all the default options and how to use the shortcode and function. Defaults $defaults = array( 'runners' => '', // accepts a single user_id, comma seprated list of user_id's, negative user_id's to exclude runners, or blank to show all 'num_runs' => '', // How many runs would you like to list. Accepts an int or '-1' to show all runs 'show_list' => false, 'show_name' => false, 'show_date' => true, 'show_distance' => true, 'show_duration' => true, 'show_pace' => true, 'show_fuel' => false, 'show_calories' => false, ); In the example below we have chosen to use the shortcode to show the runs for users 1, 3, and 6 while displaying their names but hiding the pace. Everything else was left with the default options. 1 being true and 0 being false. [list_runs runners="1,3,6" show_name=1 show_pace=0] To do the same thing with the function you would simply pass an array of arguments to the function and echo it. It would look like this. $args = array( 'runners' => "1,3,6", 'show_name' => 1, 'show_pace' => 0, ); echo nikeplus_list_runs( $args );

More plugins by WP Ninjas

Sign In / Register

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