Hello,
This is sort of an advanced question for the plugin developer.
First off, I love your plugin. It's the best I have used :)
The way I use it will pull a slideshow with the same slug name as the page in question, unless the page has a "thumbnail", which will override the slideshow. Here's my code:
<div id="feature">
<?php
if ( has_post_thumbnail() ) {
// the current post has a thumbnail
the_post_thumbnail();
} else {
// the current post lacks a thumbnail
if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow($post->post_name, "random: 1" ); }
}
?>
</div>
Now where it stops working is on the "page of posts" itself. My "page of posts" is the "news" page, and has the slug "news." For some reason, Meteor Slides will not render the slides when matched up with this "page of posts." It only renders the container div.
Ideas?