0

我尝试了以下。当有内容要显示时,显示它 + 显示 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 等。

感谢提前!

4

1 回答 1

0

关于法典,应该是

   <?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;
    endif;
    ?>

你忘了结束你的if陈述。

于 2013-05-04T15:59:42.263 回答