Wordpress - disable auto tag for part of a post/page

admin

Administrator
Staff member
I have a wordpress installation where the use of the auto < p > is already used everywhere in different posts so I don't wan to turn it off using remove_filter('the_content', 'wpautop'); in the template. I would like to turn off the auto < p > tag insertion for a part of a page like this

Code:
****PAGE****
remove_auto_p
<style>
...
</style>
<script>
...
</script>
insert_auto_p_again

Here's some post text :)

****/PAGE****

See more about this problem here if I am not clear enough (feel free to improve this question).
<a href="http://wordpress.org/support/topic/disable-automatic-p-and-br-tags-in-html-editor" rel="nofollow">http://wordpress.org/support/topic/disable-automatic-p-and-br-tags-in-html-editor</a>

(Also I don't want to tweak the actual theme code because there's allot of updates to it - perhaps I could tweak this with some sort of plugin coding instead. )