The Nike+ iPod Stats plugin for Wordpress is a great way to display to the world how you’re doing at your workouts. It uses Nike’s public API (the same one used for the official Nike widgets) to retrieve your personal data and formats it to display correctly on your Wordpress blog.
Requirements:
- A wordpress blog running on a server with PHP ? 4.3.0 compiled with curl support.
- A Nike+ login ID (used to access http://www.nike.com/nikeplus/)
- Minimal knowledge of Wordpress to install the plugin
What it does:
- Gets your personal running data from Nike.com in XML format
- Caches the data locally so your site load time is not dependent on the speed of the Nike website.
- Displays your data in an easy to read way.
- Easy to use configuration in your Wordpress administration panel
- Ability to enable or disable the display of your "Power Song"
- Ability to display all your goals under the general run data.
- Ability to link your power song to the artist on the iTunes Music Store
- Ability to show your most recent runs
- Graphs your runs
Installation Instructions:
- Upload the nikePlus.php file to your Wordpress plugins directory ex: /wp-content/plugins/)
- Enable the plugin in Wordpress administration.
- Go to the "Options" tab in Wordpress administration and select the "Nike+" tab.
- Enter your Nike+ username
- Enter your Nike+ password
- Choose your display options
- Enter a local caching path that is writeable.
- The path to your /wp-content/ directory should already be filled in.
- This directory must be writeable or it will not work!
- Insert this code into your sidebar.php file in your template folder:
<?php if(function_exists(’get_nikePLUS’)){ echo '<h2>My Nike+ Stats</h2>'; get_nikePLUS(); } ?>