Skip to content

Instantly share code, notes, and snippets.

@fikrirasyid
Last active August 29, 2015 14:06
Show Gist options
  • Save fikrirasyid/d0b38c9e87797334b1ab to your computer and use it in GitHub Desktop.
Save fikrirasyid/d0b38c9e87797334b1ab to your computer and use it in GitHub Desktop.
WordPress: Custom Conditional Tag For Detecting Sign Up Page
/**
* Check if current page is signup page or not
*
* @return boolean
*/
function is_signup(){
global $wp;
if( 'wp-signup.php' == $wp->request ){
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment