WordPress automatically adds <p> tag for each line breaks within a post or page. For some, this filter can be a headache for their particular project. ![]()
I quickly googled and fixed it by adding following code in function.php
remove_filter('the_content', 'wpautop');
;)






