Meta Box
Support Forum
Support › General › Paragraphs not output on WYSIWYG field type
I have a WYSIWYG field and it's removing all the paragraph tags on output. It's keeping <em> tags, but removing <p> tags.
<em>
<p>
The WYSIWYG field doesn't output the "p" tag by default. It can be done using the "wpautop" function like this:
echo wpautop( rwmb_meta( 'field_id' ) );
Great, that's done the trick. Thanks.