我有这个简单的代码,但无法使\\u内容和ACF代码一起工作。
如果我包含了\\u content(),它会屏蔽ACF代码,但如果我删除了\\u content(),ACF代码就可以正常工作。我怀疑有一个非常简单的解决方案。
我简化并删除了以下代码中不必要的元素:
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php
if( have_rows(\'boxes\') ): ?>
<p>This is only shown when the_content() is removed.</p>
<?php
else :
// no rows found
endif; ?>
<?php endwhile; ?>