任何人都可以发现,为什么我的WordPress循环打破了所有后,自带的高级自定义字段代码?(Can

2019-10-21 08:37发布

下面的循环运行成功,并显示在我的编辑没有语法错误,但它打破后,才自带的高级自定义字段PHP(所有的ACF它工作正常之前,一切都只是ACF工作正常后)。

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

很抱歉,如果这是一个赤裸裸的修复! 提前致谢。

Answer 1:

自定义查询后,您需要恢复全球$post与主查询的变量wp_reset_postdata() 在更多信息法典 。



文章来源: Can anyone spot why my Wordpress loop breaks all the Advanced Custom Fields code that comes after it?