Mám tento skript na výpis CPT. Funguje dobře, jenomže všechno PHP pod tímto jakoby nefungovalo.
Funguje mi jenom PHP nad tímto. Co je tam špatně? Něco neukončeno?
Vypisuju obrázek, nadpis, profese(acf) a content.
<?php
$loop = new WP_Query(array('post_type' => 'product', 'posts_per_page' => 10));
while ($loop->have_posts()) : $loop->the_post();
?>
<div>
<div>
<article>
<img src="<?php echo get_the_post_thumbnail_url(get_the_ID()); ?>" alt="" />
<h6><?php the_title(); ?></h6>
<p><?php the_field('profese'); ?></p>
<div>
<?php the_content(); ?>
</div>
</article>
</div>
</div>
<?php endwhile; ?>