Skip to content

Instantly share code, notes, and snippets.

@laras126
Last active August 29, 2015 14:08
Show Gist options
  • Save laras126/746af71035f76d3dd818 to your computer and use it in GitHub Desktop.
Save laras126/746af71035f76d3dd818 to your computer and use it in GitHub Desktop.
<?php
// https://wordpress.org/support/topic/how-to-get-the-page-name
$name = $post->post_name;
if ( is_page($name) ) {
get_template_part( $name, 'partials/partial' );
} else {
get_template_part( '404', 'partials/partial' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment