Support

Account

Home Forums Add-ons Repeater Field Shortcode for Repeater Field? Reply To: Shortcode for Repeater Field?

  • Hey John, thanks for the support.

    Could such a solution work?

    function acf_shortcode() {
        ob_start();
        ?> 
         custom field php here
        <?php
        return ob_get_clean();
    }
    add_shortcode( 'shortcode_tag','acf_shortcode' );