Support

Account

Home Forums Front-end Issues Frontend Form post content editor Reply To: Frontend Form post content editor

  • Resolved by using ob_start() and ob_get_clean().

    ob_start();
    wp_editor( $content, 'frontendform', $settings );
    $editor_contents = ob_get_clean();