Advanced Custom Field (ACF) Single Image in WYSIWYG Editor
-
Hi!
I am trying to activate a single image in an Advanced Custom Field (ACF) WYSIWYG Editor. Here’s the progess I’ve made:
<?php if(get_field('faq')): ?> <?php while(has_sub_field('faq')): ?> <h3><?php the_sub_field('question');?></h3> <?php $content = the_sub_field('answer'); if ( function_exists('slb_activate') ) $content = slb_activate($content); echo $content; ?> <?php endwhile; ?> <?php endif; ?>
What am I doing wrong? Thanks for your help!
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Advanced Custom Field (ACF) Single Image in WYSIWYG Editor’ is closed to new replies.