Title: Exclude Front Page
Last modified: September 1, 2016

---

# Exclude Front Page

 *  Resolved [Bastiano](https://wordpress.org/support/users/bastiano/)
 * (@bastiano)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/exclude-front-page/)
 * hi, how can I rule out the home page from the slide display on php function ?
   Thank you
 * [https://wordpress.org/plugins/meteor-slides/](https://wordpress.org/plugins/meteor-slides/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/exclude-front-page/#post-7550899)
 * Hi, you can do this using a conditional tag, like this:
 *     ```
       if ( is_front_page() ) {
       	if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); }
       }
       ```
   
 *  Thread Starter [Bastiano](https://wordpress.org/support/users/bastiano/)
 * (@bastiano)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/exclude-front-page/#post-7550984)
 * ok in this way displays only on the home page , in case you want to display on
   all other pages excluding the home ?, I entered this code, right?
 * Thanks again
 * <?php
    if (is_page(‘page1’)) { if ( function_exists( ‘meteor_slideshow’ ) ) {
   meteor_slideshow( “adv03”, “” ); } } if (is_page(‘page2’)) { if ( function_exists(‘
   meteor_slideshow’ ) ) { meteor_slideshow( “adv03”, “” ); } } if (is_page(‘page3’)){
   if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( “adv03”, “” );}}?
   >
 *  Plugin Author [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * (@jleuze)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/exclude-front-page/#post-7550986)
 * Sorry, I gave you the wrong code. You don’t need to specify each page unless 
   you only need it on certain page.
 * To show it on all but the homepage, use this:
 *     ```
       if ( !is_front_page() ) {
       	if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); }
       }
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Exclude Front Page’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/meteor-slides_0f131a.svg)
 * [Meteor Slides](https://wordpress.org/plugins/meteor-slides/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/meteor-slides/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/meteor-slides/)
 * [Active Topics](https://wordpress.org/support/plugin/meteor-slides/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/meteor-slides/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/meteor-slides/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Josh Leuze](https://wordpress.org/support/users/jleuze/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/exclude-front-page/#post-7550986)
 * Status: resolved