Reply To: Masking GP Hooks on all but Homepage

Home Forums Support Masking GP Hooks on all but Homepage Reply To: Masking GP Hooks on all but Homepage

Home Forums Support Masking GP Hooks on all but Homepage Reply To: Masking GP Hooks on all but Homepage

#105190
Tom
Lead Developer
Lead Developer

Wrap it in a PHP if conditional:

<?php if ( is_front_page() ) : ?>
      Anything in here will only show up on the homepage.
<?php endif; ?>

Make sure you check the “Execute PHP” checkbox.