Hi! I’ve set up a simple editor metafield:
piklist('field', array(
'type' => 'editor'
,'field' => 'serving_suggestions'
,'label' => __('Serving Suggestions')
,'columns' => 12
));
But in the front end, it displays with the text all run together, ignoring paragraphs and line breaks. Am I missing something in my code? Here’s how I’m grabbing the info:
echo '<p id="productServingSuggestions">' . get_post_meta($post->ID, 'serving_suggestions', true) . '</p>';
Many thanks!
Adam