Conditional for GP Hooks
Hi I have a few hooks that I only want in certain pages. For a hook that’s excluded on the homepage, I use this: <?php if ( ! is_front_page() ) : ?> content <?php endif; ?> My questions are: 1) how should the conditional be if I want this same hook to be excluded in … Read more