Aitazaz Khan
Aitazaz Khan

Reputation: 1605

Wordpress visual editor breaks automatically to new line

Hope you are all fine. I have been facing an issue with wordpress visual editor which dont allow me to type full line in a row the text automatically shifts to new line when the paragraph or text reaches to the middle of editor i have searched a lot but didn't find solution to it kindly help me solving this issue. Following are the screen shot:

enter image description here

Note: I have found this problems with the new version of wordpress in old versions it allow me write fully in visual editor. i install wordpress several time for several different projects but all have the same issue

Upvotes: 2

Views: 200

Answers (1)

syed shah
syed shah

Reputation: 678

Please add the following function to your WordPress functions.php file

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );

Here are the link for WordPress documentation

Upvotes: 2

Related Questions