我脑子里在琢磨一个小问题。
简言之
如果是主页,则不执行任何操作
如果页面有缩略图,请运行代码,将页面标题弹出到带有合适CSS的全宽缩略图的顶部
如果没有缩略图,则显示正常条目标题
已经走了这么远,但没有走得更远。任何帮助都将不胜感激。
<header class="entry-header">
<?php
if ( is_front_page() ) {
// This is the home page and do nothing
} else {
// if thumbnail show it and add title
if ( has_post_thumbnail()) : the_post_thumbnail(\'full\'); ?>
<div class="single-featured-image">
<h1><?php the_title(); ?></h1>
</div>
<?php } else {
// if no thumbnail then just print title as usual ?>
<div class="entry-title">
<h1><?php the_title(); ?></h1>
</div>
<?php
}
}
?>