Support

Account

Home Forums General Issues Removing Paragraph Tags from WYSIWYG Fields? Reply To: Removing Paragraph Tags from WYSIWYG Fields?

  • Hi @Nitruc

    This is a normal WP behaviour – to turn all new lines into paragraph tags.

    To remove this, you can try loading the value without any formatting.
    You can do this by providing a ‘false’ for the format parameter in the get_field / the_field funcions like so:

    
    the_field('wysiwyg_field', false, false);
    

    Hope that helps.

    Thanks
    E