Support

Account

Home Forums Backend Issues (wp-admin) Using Custom Shortcodes in ACF Fields Reply To: Using Custom Shortcodes in ACF Fields

  • Hi Jonathan,

    Thanks for your help. Your suggestion doesn’t seem to be working unfortunately.

    This is what I have in my custom field:
    Lorem ipsum dolor: [an-example-shortcode]

    Then in my template file I now have this:

    while ( have_rows('records') ) : the_row();
        echo apply_filters('the_content', get_sub_field('record'));
    endwhile;

    This is simply outputting “Lorem ipsum dolor: [an-example-shortcode]”

    Any other suggestions?

    Thanks again