Skip to content

Instantly share code, notes, and snippets.

@timwco
Created June 5, 2011 13:27
Show Gist options
  • Select an option

  • Save timwco/1008959 to your computer and use it in GitHub Desktop.

Select an option

Save timwco/1008959 to your computer and use it in GitHub Desktop.
Wordpress Apply to All Sub Pages
<?php
if ( is_page('about-us') || '3' == $post->post_parent ) {
// Do Something SPECIFIC Here
} else {
// Handle Everything Else Here
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment