Bonbon
Content
FAQ
Landing pages sections
Link family
Link product
Listing HowTo
Menu footer
Menu header
News
Page FAQ
Produits
Resellers
Sections
Wording

FAQ

		
<?php
$tbe_faq_description = get_field('tbe_faq_description');
$tbe_faq_product = get_field('tbe_faq_product');
?>
<?php if ($tbe_faq_description){ ?>
<?php echo $tbe_faq_description; ?>
<?php } ?>
<?php
if ($tbe_faq_product) {
foreach ($tbe_faq_product as $post) {
setup_postdata($post);
?>
<a href='<?php the_permalink(); ?>'><?php the_title(); ?></a>
<?php
}
wp_reset_postdata();
}
?>