• 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

Where am I going wrong in this conditional dequeuing?

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 › Where am I going wrong in this conditional dequeuing?

This topic is: not resolved

Tagged: conditional, custom post types

  • This topic has 1 reply, 2 voices, and was last updated 8 years, 9 months ago by Victor Font.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • August 25, 2016 at 1:36 am #192016
    LunaAl
    Member

    Hello,

    I'm trying to get a function to execute only if the current page is not a Custom Post type, e.g 'movies', OR if it's not an array of pages, e.g: 'about', 'shop', 'contact' and 'sitemap'.

    Contact and sitemap are both child pages of the parent About.

    I can get the function to work properly on the CPT 'movies, with this:

    
    add_action('genesis_before_loop','cus_tom_single');
    function cus_tom_single() {
         if ( get_post_type() != 'movies' ) {
            remove_action( 'wp_head', 'movies_display_redirect' );
            remove_action( 'wp_footer', 'movies_display_inline' );
         }
    }
    

    But as soon as I try to add an ! is_page, the function entirely stops working. I've tried:

    
    add_action('genesis_before_loop','cus_tom_single');
    function cus_tom_single() {
         if (  ! is_singular( 'movies' ) || ! is_page( array( 'about', 'contact', 'shop', 'sitemap' ) ) ) {
            remove_action( 'wp_head', 'movies_display_redirect' );
            remove_action( 'wp_footer', 'movies_display_inline' );
         }
    }
    

    With no success either. Any suggestions would be most welcome.

    August 25, 2016 at 5:59 am #192019
    Victor Font
    Moderator

    It could be due to the use of is_singular. You are not using is_singular in the code that works. The is_singular tag is equivalent to ‘is_page( 'movies' ) || is_attachment( 'movies' ) || is_single( 'movies' )’. The first half of your if statement will evaluate to true for everything except the movies CPT. The is_page after the logical OR will never evaluate unless the first half of the statement is false.

    You may be better off using is_singular for all of the target pages/posts.

    $target_posts = array( 'movies', 'about', 'contact', 'shop', 'sitemap');
    if (  ! is_singular(  $target_posts ) )

    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

  • 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

© 2025 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