Is there a way to remove_filter on custom wysiwyg fields?
i did not find any solution to this, for now i just used this in my css:
p:empty {
display:none
}
Thanks
Hi @ildaniel8
You can load the value without any formating like so:
the_field($field_name, false, false);
You can read-up on the docs if you wish, but the 2 false params will prevent formatting.
Thanks
E