Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. remove_filter('the_content', 'wpautop');
  2.  
  3. Before WordPress displays a post's content, the content gets passed
  4. through multiple filters to ensure that it safely appears how you
  5. enter it within the editor.
  6.  
  7. One of these filters is wpautop, which replaces double line breaks
  8. with <p> tags, and single line breaks with <br /> tags. However, this
  9. filter sometimes causes issues when you are inputting a lot of HTML
  10. markup in the post editor.
  11.  
  12. This plugin displays a checkbox in the publish meta box of the post
  13. edit screen that disables the wpautop filter for that post.
  14.  
  15. Also adds a 'wpautop', or 'no-wpautop' class to the post_class filter
  16. to help with CSS styling.
  17.  
  18. echo nl2br(the_content);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement