下面的循环运行成功,并显示在我的编辑没有语法错误,但它打破后,才自带的高级自定义字段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>
很抱歉,如果这是一个赤裸裸的修复! 提前致谢。