Simple Events Calendar

Simple and lightweight events calendar to show events on posts/pages, manage them centrally, hCalendar compliant and stays up to date.

Author:Jerry Rietveld (profile at wordpress.org)
WordPress version required:3.0
WordPress version tested:5.5.3
Plugin version:1.4.0
Added to WordPress repository:16-03-2011
Last updated:08-08-2020
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, %:78
Rated by:12
Plugin URI:http://www.studiostacks.com/plugins/simple-ev...
Total downloads:55 032
Active installs:1 000+
plugin download
Click to start download

What does the plugin do?

The Simple Events Calendar is a WordPress plugin developed to allow WordPress site owners to easily add upcoming events to their posts or pages. Every event is published and microformated with the hCalendar standard, thus fully semantic.

Simple Events Calendar adds a new option to the admin Dashboard where users can add new events or delete existing ones. Events can contain URLs to get more info and a separate link for the location. The latter could for example be used at add the link to a Google Map.

Events can be published with a Twitter link to allow your visitors to easily tweet about your event.

Adding events to your page or post

You can easily place your events in any post or page by adding the following text (shortcode): [events]

Using labels to add specific events

In some cases it might be better to only display certain events. Let’s say you’re organizing workshops on online marketing and also on UX. If you create a page to explain what people can expect when they attend your UX workshop, you may want to include the dates when this event takes place. But it wouldn’t make any sense to display the dates of the online marketing workshop.

To deal with this issue, you can add labels to your events. By calling a label, only the events with that label are displayed. So if we give our UX workshop events the label UX, we can display only the UX workshops like so:

[events label=ux]

Upcoming, expired or both

By default only upcoming events will be displayed. If you wish to display both upcoming and expired events you can do so by adding the age element.

[events age=all] will display every event stored.

If you wish to display your passed events simply add age=expired:

[events age=expired]

Limit the numer of events displayed

By default all events matching your conditions will be displayed. But what if you only want to display the next 3 upcoming events out of a list of 20? Simply add a limit attribute:

[events limit=3]

Only display the dates of the event, or just the start time

[events time=no] will display your events without the time.

[events time=start] will display your events with just a starting time.

Do not show the Twitter button

[events tweet=no] will show your events without the Twitter button.

Label, age, limit, etc. can be used together

[events label=ux age=all] would display all upcoming and passed events that have the ux label.