Wrap Meta Box with and for each new line

Try: <li> <?php echo wpautop( $lyrics_1);?> </li> instead of this line: <?php echo “<li>\n”; wpautop( $lyrics_1) ; “</li>\n”; ?> edit: thanks @Toscho for the syntax edit, I made a hasty error in my earlier revision 😉

Line break no working on theme

It is possible to add line breaks using &nbsp; in the “Text” view like so: https://cloudup.com/cb5PCT2sWRP One thing to be aware of is that once you add the HTML for non-breaking spaces, you must remain in the “Text” view for future edits; switching back and forth to the visual editor will remove the above code.

How to make a shortcode with a line break in it parse correctly?

There are two workaround options I’ve found: Workaround 1: You can use an indiscriminate number of non-breaking spaces where you would like a line break. So to imitate this: [shortcode paraA1=’789′ paraB1=’987′ paraA2=’890′ paraB2=’098′ paraA3=’901′ paraB3=’109′ ] You can enter: [shortcode paraA1=’789′ paraB1=’987′ paraA2=’890′ paraB2=’098′ paraA3=’901′ paraB3=’109′ ] The WordPress text editor will wrap the … Read more