WP-Running-Record WordPress Plugin
wp-running-record is a small WordPress plugin that allows you to keep
track of your personal running goal and progress toward the goal. You use a
control panel under the Dashboard menu to update the record and a simple function
call within your template to display the data to the readers of your site.
Download
Current Version: 0.2.1
Download
Screen Shot
Installation
- Upload the wp-running-record.php file (within the tarball) to your
/wp-content/plugins/ directory.
- Activate the plugin through the 'Plugins' menu in WordPress
Usage
- Connect to the Running Record admin panel located under the 'Dashboard'
menu.
- Add a goal and any progress you have made. Click 'Update Record' to save
the changes.
- Update your template to show the values to your blog visitors. I use this
code:
<h3>2008 Running</h3>
<ul>
<center>
<?php if(function_exists('running_record')) { running_record(); } ?>
</center>
</ul>
Frequently Asked Questions
No questions yet. Too bad.