Multiple Slideshows

Slides can be organized into slideshows, just as posts can be organized into categories.

Add New Slideshow

Go to Slides -> Slideshows to create new slideshows or edit existing ones.

Add Slide to Slideshow

To add a slide to a slideshow, edit that slide, and select the slideshow in the Slideshows metabox.

Adding a specific Slideshow

By adding a slideshow parameter to a template tag, shortcode, or widget, you can load a specific slideshow. The value of the slideshow parameter should be the slideshow’s slug.

Template Tag

Here is the format of the template tag:

<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow( "slideshow", "metadata" ); } ?>

Remember, the value of the slideshow parameter should be the slideshow’s slug. So to load a slideshow with the slug “robots” with no metadata, your tag should look like this:

<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow( "robots", "" ); } ?>
Shortcode

The shortcode is formatted slightly differently, but uses the same values:

[meteor_slideshow slideshow="slideshow" metadata="metadata"]

A shortcode for a slideshow with the slug “robots” with no metadata would look like this:

[meteor_slideshow slideshow="robots"]
Widget

The widget has the same format as the template tag, just add the slideshow’s slug to the “Slideshow” field in the widget.