Skip to content

Instantly share code, notes, and snippets.

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 kellenmace/3630a454aa6a3a30e4ff80b50a5c0a41 to your computer and use it in GitHub Desktop.
Save kellenmace/3630a454aa6a3a30e4ff80b50a5c0a41 to your computer and use it in GitHub Desktop.
Get Page Template for Post in WordPress Admin
<?php
/**
* Return true if abc-123 page template is being used, else false.
*
* @return bool Whether abc-123 page template is being used.
*/
function km_is_abc_123_template() {
global $post;
if ( ! $post ) {
return false;
}
return 'abc-123.php' === get_post_meta( $post->ID, '_wp_page_template', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment