Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 03:56
Show Gist options
  • Save frankyonnetti/5449130 to your computer and use it in GitHub Desktop.
Save frankyonnetti/5449130 to your computer and use it in GitHub Desktop.
WordPress - if_page_template #wordpress
<?php
if ( is_page_template('page-about.php') ) {
// Returns true when 'page-about.php' is being used.
} else {
// Returns false when 'page-about.php' is not being used.
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment