我尝试了以下。当有内容要显示时,显示它 + 显示 H3 <h3>Overview</h3>
,如果不显示注释。
但这对我不起作用。我的代码:
<?php
$heroimage = get_field('hero_image' );
$alt = $image['title' ];
?>
<?php if ($heroimage) : ?>
<div class="grid_12">
<img src="<?php echo $heroimage; ?>" alt="<?php echo $alt; ?>"/>
</div><!-- End div.grid_12 -->
<?php endif; ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="grid_8">
<h3>Overview</h3>
<?php the_content(); ?>
</article><!-- End article.grid_8 -->
<?php endwhile; ?>
Hero 图像的第一部分是从插件 Advanced Custom Fields 中获取图像。问题在于 if have_posts 等。
感谢提前!