Title: Hide From Specific Posts
Last modified: August 22, 2016

---

# Hide From Specific Posts

 *  Resolved [richinaustin](https://wordpress.org/support/users/richinaustin/)
 * (@richinaustin)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/hide-from-specific-posts/)
 * First of all, thank you for this incredible plugin.
 * Is there a way to hide (exclude) the code in the txt file from certain posts?
 * [https://wordpress.org/plugins/bottom-of-every-post/](https://wordpress.org/plugins/bottom-of-every-post/)

Viewing 1 replies (of 1 total)

 *  [jennjoanne](https://wordpress.org/support/users/jennjoanne/)
 * (@jennjoanne)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hide-from-specific-posts/#post-5264680)
 * Just did this:
 * You’ll have to edit the plugin. Find this line:
    if( !is_page( ) && file_exists(
   $fileName )){
 * …and change that code to one of these lines depending on your configuration:
 * EXCLUDE A CATEGORY
 * if( !is_page( ) && !has_category(‘portfolio’) && file_exists( $fileName )){
 * EXCLUDE A CUSTOM POST TYPE
 * if( !is_page( ) && ‘portfolio’ != get_post_type() && file_exists( $fileName )){
 * So mine looked like this:
    if( !is_page( ) && !has_category(‘reading-order’) &&
   file_exists( $fileName )){

Viewing 1 replies (of 1 total)

The topic ‘Hide From Specific Posts’ is closed to new replies.

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

## Tags

 * [exclude](https://wordpress.org/support/topic-tag/exclude/)
 * [hide](https://wordpress.org/support/topic-tag/hide/)

 * 1 reply
 * 2 participants
 * Last reply from: [jennjoanne](https://wordpress.org/support/users/jennjoanne/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/hide-from-specific-posts/#post-5264680)
 * Status: resolved