Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Created October 6, 2014 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadawais/0ddde36a2bb8c83bd52b to your computer and use it in GitHub Desktop.
Save ahmadawais/0ddde36a2bb8c83bd52b to your computer and use it in GitHub Desktop.
Check if it is a particular WordPress page
/**
* @Check if it is a particular WordPress page
* @Codex http://codex.wordpress.org/Function_Reference/is_page
*
*/
if(is_page(42)){
//This runs when page with ID 42 is being displayed
}
else{
//This runs always except for when the page ID is 42
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment