任何人都可以发现为什么我的Wordpress循环会破坏它之后的所有高级自定义字段代码吗?

时间:2014-12-03 00:38:26

标签: wordpress while-loop syntax-error advanced-custom-fields

以下循环正在成功运行并且在我的编辑器中没有显示语法错误,但它只破坏了它之后的高级自定义字段PHP(所有ACF在它正常工作之前,除ACF之外的所有内容都正常工作)。 / p>

<?php
    $args=array(
        'post_type' => 'page',
        'post_parent' => '39'
    );

    $my_query = new WP_Query($args);
    if( $my_query->have_posts() ) {
    while ($my_query->have_posts()) : $my_query->the_post(); ?>

    <div class="project" style="background-image:url('<?php the_field('preview_thumbnail'); ?>')">
        <div class="project-overlay" style="background-color:<?php the_field('project_highlight_color'); ?>">
        </div>
        <div class="project-content">
            <h3><?php the_title(); ?></h3>
            <p><?php the_field('preview_text'); ?></p>
            <a href="<?php the_permalink(); ?>" class="button arrow-right">Read more</a>
        </div>
    </div>

<?php endwhile; } ?>

这是一个在它之后仍然有用的例子 <img src="<?php echo get_template_directory_uri(); ?>/images/logo-white.png" />

这里有一个例子,说明它后面的内容(高级自定义字段代码)
<p class="banner-text"><?php the_field('pullout_summary'); ?></p>

对不起,如果这是一个明显的修复!提前谢谢。

1 个答案:

答案 0 :(得分:2)

自定义查询后,您需要使用$post恢复主查询的全局wp_reset_postdata()变量。 Codex

中的更多信息