Hi all,
I use the regular loop in combination with the ACF plugin. But I have the this problem: I got the same content from the last <?php the_field ?>
in my loop in the Wysiwyg.
Is there a solution for this problem, what am I doing wrong?
Regular loop:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
I have activated the qTranslate plugin, without this plugin ACF work normal.
Hi @sallandseboer
Your code above does not show how you are using ACF at all. Without seeing your real code, I can’t offer much support as I don’t understand what the issue is