Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Make sure each paragraph of text is actually wrapped with <p></p> tags
Hi Schleckel,
I think it may be tag close issue when tags are not close properly it created an issue as like this.
@andrew and @nisha.
I’ve deliberately removed all p-tags, cause when applied they change the fonts on the website (as you can see from the post).
Let me try to rephrase what I need/wish for – WordPress STOP autoformatting and publish what I write.
It’s very simple and it’s beyond my brainpower to understand why the f*** (yes I’m very frustrated) WordPress autoformats when posts are written using the Text editor…. I mean, that’s why its there.
Thanks in advance for the time you spend helping me solve this ‘a-lot-of-naughty-words’ issue
A simple search of these forums or the WordPress site as a whole shows all kinds of results: https://wordpress.org/search/autoformatting
Use a plugin or add to your functions.php file
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
Re: http://codex.wordpress.org/Function_Reference/wpautop
Or, disable it on as as-needed basis in a post/page
http://wordpress.stackexchange.com/questions/21417/possible-to-disable-autop-temporarily/50759