Support

Account

Home Forums ACF PRO Is there something like a get_acf_form method? Reply To: Is there something like a get_acf_form method?

  • Thanks. I tried the buffer code that he suggested – this didn’t work. So I went with:

    `ob_start();

    acf_Form($new_post);

    $context[‘vf_form’] = ob_get_clean();

    which did work. I find all this buffer stuff a bit weird.