Skip to content

Instantly share code, notes, and snippets.

@morgyface
Created December 19, 2017 12:27
Show Gist options
  • Select an option

  • Save morgyface/cbcefadbf0dd9ed331b603ef8289a95c to your computer and use it in GitHub Desktop.

Select an option

Save morgyface/cbcefadbf0dd9ed331b603ef8289a95c to your computer and use it in GitHub Desktop.
WordPress | Function | Return the name of the template the posts parent uses
<?php
function parent_template() {
global $post;
$parent_id = wp_get_post_parent_id( $post->ID );
$parent_template_name = get_page_template_slug( $parent_id );
return $parent_template_name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment