Home › Forums › Add-ons › Flexible Content Field › wysiwyg › Reply To: wysiwyg
Hi @thesrpr,
There is a similar thread here, but instead of <br> it’s the p tag: http://support.advancedcustomfields.com/forums/topic/removing-paragraph-tags-from-wysiwyg-fields/
There are a few filters for this but what I’d recommend is reading up on the preg_replace
php function.
Here’s an example of how I removed p tags and empty spaces with that function:
<?php echo preg_replace('~\s?<p>(\s| )+</p>\s?~', '', get_sub_field('field_name')); ?>
You’d need something along these lines:
<?php echo preg_replace('/(<br>)+$/', '', get_sub_field('field_name')); ?>
This may not be the perfect solution for you. Also check out str_replace
and strip_tags
.
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!
🚀 ACF & ACF PRO 6.0.7 are now available.
— Advanced Custom Fields (@wp_acf) January 18, 2023
✨This release contains bug fixes and improvements while we continue to work on the next major release of ACF.https://t.co/wQgAOpwmUI
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.