Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Sure, you just need to use is_page to load certain slideshows on certain pages:

    <?php if ( is_page('aliens') ) {
    
    	if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow("aliens", ""); }
    
    } elseif ( is_page('predators') ) {
    
    	if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow("predators", ""); }
    
    } ?>
    Thread Starter Maaike

    (@pinkmoose)

    works perfect, thanks!!!

    Plugin Author Josh Leuze

    (@jleuze)

    No problem!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Meteor Slides] Simple question about adding to header’ is closed to new replies.