Skip to content

Instantly share code, notes, and snippets.

@iftee
Last active July 5, 2021 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iftee/84f76676415a1bd75fdd to your computer and use it in GitHub Desktop.
Save iftee/84f76676415a1bd75fdd to your computer and use it in GitHub Desktop.
<?php
/*
* Line break in WordPress meta box text area: the CSS way
*/
?>
<p class="whitespace">
<?php echo esc_html( get_post_meta( get_the_ID(), 'my-meta-field', true) ); ?>
</p>
<style>
.whitespace {
white-space: pre-wrap;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment