Home › Forums › Add-ons › Repeater Field › Editor Wysiwyg in Repeater field br instead of p elements › Reply To: Editor Wysiwyg in Repeater field br instead of p elements
Hi @dashaluna
The WP WYSIWYG automatically adds in p tags when the value is returned by the get_field function.
This is due to the filters which are run on the WYSIYWG field value which follow the same rules as the standard WP the_content.
To get around the issue, you can load the value without any formatting like so:
the_field('field_name', false, false);
The 3rd false tells ACF to not format the value.
Hope that helps.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.