gpt4 book ai didi

wordpress - 谁能发现我的Wordpress循环为何中断其后的所有“高级自定义字段”代码?

转载 作者:行者123 更新时间:2023-12-03 08:06:48 24 4
gpt4 key购买 nike

以下循环已成功运行,并且在我的编辑器中未显示任何语法错误,但它仅破坏了其后的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中有更多信息。

关于wordpress - 谁能发现我的Wordpress循环为何中断其后的所有“高级自定义字段”代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27261683/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com