Skip to content

Instantly share code, notes, and snippets.

@mustafauysal
Last active December 21, 2015 20:59
Show Gist options
  • Select an option

  • Save mustafauysal/6365550 to your computer and use it in GitHub Desktop.

Select an option

Save mustafauysal/6365550 to your computer and use it in GitHub Desktop.
If WordPress' Conditional Tags ( @see http://codex.wordpress.org/Conditional_Tags ) not enough. You can use this way.
<?php
if ( isset( $_GET['page'] ) && $_GET['page'] == 'my_super_page_slug' ) {
add_action( 'blah', 'call_back_blah' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment