• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Simple Hooks Plugin

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Simple Hooks Plugin

This topic is: not resolved

Tagged: conditional tags, Simple Hooks

  • This topic has 1 reply, 2 voices, and was last updated 7 years, 1 month ago by Brad Dalton.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • January 23, 2019 at 8:31 pm #441466
    Josie
    Participant

    Hi there,

    I'm using the Simple Hooks Plugin for the "genesis_after_entry_content" hook.

    I'd like to keep it but remove it from ONE PAGE. How do I do this?

    Thanks!
    Josie

    January 23, 2019 at 8:55 pm #441753
    Brad Dalton
    Participant

    Add a conditional tag like this to exclude your code executing on single posts :

    if ( is_single( '157' ) ) 
        return;
    

    Or this to exclude your code executing on single pages :

    if ( is_page( '157' ) ) 
        return;
    

    Swap out the 157 with the id of your post or page.

    Or

    You could use code to hook in your function from your functions file without the need to use Simple Hooks.

    Something like this :

    add_action( 'genesis_after_entry_content', 'exclude_page' );
    
    function exclude_page() {
    
    if ( is_single( '157' ) ) 
        return;
    
        echo 'Hello World';
        
    }
    

    Tutorials for StudioPress Themes.

  • Author
    Posts
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble