是否可以在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 } ?>
答案 0 :(得分: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
}