Home › Forums › Support › Page Specific Hooks This topic has 1 reply, 2 voices, and was last updated 9 years, 4 months ago by Tom. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts July 11, 2014 at 9:15 am #3718 Aaron Redman Hi Tom, I was wondering if I can specify that the GP Hooks only apply to certain pages? Is there some simple code I can insert? Thanks! Aaron July 11, 2014 at 9:17 am #3719 TomLead Developer Lead Developer Hi Aaron, You can use WordPress PHP conditionals in the hooks as long as you select Execute PHP. http://codex.wordpress.org/Conditional_Tags As an example: <?php if ( is_page( 'page-slug' ) ) : ?> Some content in here which will show up on yourwebsite.com/page-slug <?php endif; ?> Be careful with PHP – double check everything as it can be very picky and cause nasty errors. Tom Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In