// in the loop:
if ( get_page_template_slug( get_the_ID() ) ){
// Yep, this page has a page template
// anywhere:
if ( get_page_template_slug( $some_post_ID ) ){
// Uh-huh.
if ( is_page_template( 'about.php' ) ) {
// about.php is used
} else {
// about.php is not used
示例3
您还可以通过传递模板名称数组来指定多个模板。
if ( is_page_template( array( 'template-full-width.php', 'template-product-offers.php' ) ) ) {
// Do Something here if either of the above templates are being used
else {
// Else do this