Title: Fine Tune Instance Location
Last modified: August 30, 2016

---

# Fine Tune Instance Location

 *  Resolved [dwcouch](https://wordpress.org/support/users/dwcouch/)
 * (@dwcouch)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/fine-tune-instance-location/)
 * Can you elaborate on usage [here](https://github.com/jchristopher/attachments/blob/master/docs/hooks.md#fine-tune-instance-location)
   please.
 * I’d like to have attachments display only if `is_front_page()` is `true`.
 * [https://wordpress.org/plugins/attachments/](https://wordpress.org/plugins/attachments/)

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

 *  Thread Starter [dwcouch](https://wordpress.org/support/users/dwcouch/)
 * (@dwcouch)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/fine-tune-instance-location/#post-6447583)
 * Nevermind! 😀
 *     ```
       function my_attachments_location_limit( $val ){
           global $post;
   
           $frontpage_ID = get_option('page_on_front');
   
           // we only want this instance to show up on the home page
           return ( $post->ID == $frontpage_ID ) ? true : false;
       }
   
       add_filter( 'attachments_location_mns_slideshow_meta', 'my_attachments_location_limit' );
       ```
   
 *  Thread Starter [dwcouch](https://wordpress.org/support/users/dwcouch/)
 * (@dwcouch)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/fine-tune-instance-location/#post-6447584)
 * Nevermind! 😀
 *     ```
       function my_attachments_location_limit( $val ){
           global $post;
   
           $frontpage_ID = get_option('page_on_front');
   
           // we only want this instance to show up on the home page
           return ( $post->ID == $frontpage_ID ) ? true : false;
       }
   
       add_filter( 'attachments_location_mns_slideshow_meta', 'my_attachments_location_limit' );
       ```
   

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

The topic ‘Fine Tune Instance Location’ is closed to new replies.

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

 * 2 replies
 * 1 participant
 * Last reply from: [dwcouch](https://wordpress.org/support/users/dwcouch/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/fine-tune-instance-location/#post-6447584)
 * Status: resolved