Support

Account

Home Forums General Issues Change wpautop priority on WYSIWYG Reply To: Change wpautop priority on WYSIWYG

  • I don’t know what other effects it would have but this should do it

    
    add_action('init', 'change_acf_wpautop_priority');
    function change_acf_wpautop_priority() {
      remove_filter('acf_the_content', 'wpautop');
      add_filter('acf_the_content', 'wpautop', 12);
    }