How to Stop WP from formatting?

by 2 replies
3
I'm tired of WP adding breaks and paragraphs and spans -- just basically cluttering up HTML. I've tried a couple plugins that purport to solve the problem, but none seem to work.

How can I keep WP from adding to my html? Thanks.
#programming #formatting #stop
  • The best way is to edit your user and mark off the "Disable the visual editor when writing" option. Now your HTML code won't be touched by wordpress.
  • There is a filter that is applied to post output called 'wpautop'. Its function is to convert linebreaks in the output to <p> tags. Sometimes it doesn't work so well.

    Add this line to your theme's functions.php file:
    Code:
    remove_filter
    If it fixes your issues, great, if not, it's easy to remove.

Next Topics on Trending Feed

  • 3

    I'm tired of WP adding breaks and paragraphs and spans -- just basically cluttering up HTML. I've tried a couple plugins that purport to solve the problem, but none seem to work. How can I keep WP from adding to my html? Thanks.