1

是否可以在 wordpress 中为特定的自定义模板页面设置条件 if 语句?

例子:

 <?php if ( is_page('custom-home.php') ) { ?>

     //do this on my home page

   <?php } elseif ('custom-gallery.php') ) { ?>

      //do this on my gallery page

  <?php } else { ?>

  <?php } ?>
4

1 回答 1

2

is_page_template使用指定模板时返回 true:

if( is_page_template( 'custom-home.php' ) ) { 
    // do home stuff
} elseif( is_page_template( 'custom-gallery.php' ) ) {
    // do gallery stuff
}
于 2013-06-20T23:27:25.553 回答