Conference Schedule

Create a conference website, with speaker descriptions, session details and a schedule.

Author:Simon Wheatley (profile at wordpress.org)
WordPress version required:3.1
WordPress version tested:3.1.4
Plugin version:0.52
Added to WordPress repository:19-03-2011
Last updated:20-03-2011
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, %:20
Rated by:1
Plugin URI:http://simonwheatley.co.uk/wordpress/conferen...
Total downloads:3 622
Active installs:40+
plugin download
Click to start download

This plugin allows you to create a conference schedule in your WordPress website. You can create pages for speakers and sessions, and display an automatically created schedule of what’s on.

The participant pages can be created with different roles, e.g. Speaker, Workshop Leader, etc, and each have an image with automatically created thumbnails. A shortcode ([participants]) allows you to list all your speakers, with links through to read more about them.

Sessions are created with start and end times, and allow you to specify a location and speaker. The main schedule and schedules for each location are automatically generated.

The plugin comes with a Twenty Ten child theme (more on child themes), which you can use out of the box or as a reference to create your own conference theme.

This plugin handles describing and scheduling your conference and the key participants, it does not handle the ticketing.

Template Tags

Eventually I plan to abstract much of the raw PHP in the Conference Schedule theme templates into template tags. For now here’s a few template tags as a statement of intent:

<?php the_sessions( $before, $sep, $after ); ?> - Very similar to the built-in template tag `[https://codex.wordpress.org/Function_Reference/the_tags](the_tags)`, used within a participant loop this will list the sessions the current participant is taking part in. Devs: note that there is a filter `cs_the_sessions` you can use on the output of this template tag.

<?php get_the_sessions( $before, $sep, $after ); ?> - Very similar to the built-in template tag `[https://codex.wordpress.org/Function_Reference/get_the_tags](get_the_tags)`, used within a participant loop this will return a list of the sessions the current participant is taking part in. Devs: note that there is a filter `cs_session_links` you can use on the output of this template tag.

<?php has_schedule(); ?> - When used on a Session post in a Session loop, this will tell you whether the current session has a schedule set.

<?php the_start_time( $time_format, $short_time_format ); ?> - When used on a Session post in a Session loop, this will show the scheduled session start time. The `time_format` and `short_time_format` strings are optional and are used to provide a date format, they default to the values on the Conference admin screen under the Settings section of the WordPress admin area. If the time is on the hour then the `short_time_format` is used, this enables you to output `10am` instead of `10:00am`, thus saving space. Devs: Note that there is a `cs_the_start_time` filter you can use on the output of this template tag.

<?php get_the_start_time( $time_format, $short_time_format, $post ); ?> - The same as the `the_start_time` template tag, except it returns the time rather than printing it. Devs: Note that there is a `cs_get_the_start_time` filter you can use on the output of this function.

<?php the_end_time( $time_format, $short_time_format ); ?> - When used on a Session post in a Session loop, this will show the scheduled end time for this session. Otherwise identical to `the_start_time` above. Devs: Note that there is a `cs_the_start_time` filter you can use on the output of this template tag.

<?php get_the_end_time( $time_format, $short_time_format, $post ); ?> - The same as the `the_end_time` template tag, except it returns the time rather than printing it. Devs: Note that there is a `cs_get_the_end_time` filter you can use on the output of this function.