以下循环已成功运行,并且在我的编辑器中未显示任何语法错误,但它仅破坏了其后的Advanced Custom Fields 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>
抱歉,这是公然的解决方法!提前致谢。

最佳答案

自定义查询后,您需要使用$post恢复主查询的全局wp_reset_postdata()变量。在Codex中有更多信息。

07-24 09:52