我在一个网站上工作,每个页面组都有自己的特色图片。我试图在标题中做一个条件语句,但不确定如何检查父页面的特色图像。
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
} else{?>
<img src="<?php bloginfo(\'template_url\')?>/images/BANNER-DEFAULT.jpg"/>
<?php
}
?>
我希望它像:
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
if ( ?????? { // check if the parent page has a Post Thumbnail assigned to it.
the_post_thumbnail();
}else{?>
<img src="<?php bloginfo(\'template_url\')?>/images/BANNER-DEFAULT.jpg"/>
<?php
}
?>
有人能帮忙吗?我也在考虑调用页面模板上的横幅,而不是标题,但我仍然需要一种方法来调用父页面上的特色图像。