Hotscot Events

Simple events module…

Author:Hotscot (profile at wordpress.org)
WordPress version required:3.1
WordPress version tested:3.3.2
Plugin version:1.0.6
Added to WordPress repository:25-04-2012
Last updated:04-04-2013
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:
Total downloads:951
Active installs:10+
plugin download
Click to start download

Simple events module...

The shortcode is [ht_list_events numevents=1] where num events is optional to limit the amount of events being shown.

For theme developers - these functions may also be of use to you:

/**
 * echo out the events table
 * @param  string  $start_date [optional] leave blnk for current date
 * @param  string  $end_date   [optional] leave blank for all events
 * @param  integer $limit      [optional] set to 0 for all events
 * @return void
 */
ht_eventsHTML($start_date = "", $end_date = "", $limit = 0)
/**
 * get the events table html string
 * @param  string  $start_date [optional] leave blnk for current date
 * @param  string  $end_date   [optional] leave blank for all events
 * @param  integer $limit      [optional] set to 0 for all events
 * @return string $html Events table html
 */
ht_getEventsHTML($start_date = "", $end_date = "", $limit = 0);