How to remove default tag from wp post content?

admin

Administrator
Staff member
I am facing a big problem to developing a wordpress theme. I want to show post content in
Code:
<h2></h2>
But by default it is showing in
Code:
<p></p>
.Post content also have
Code:
<br>
. I want to keep this
Code:
<br>
and want to remove
Code:
<p></p>
. I have used this
Code:
remove_filter ('the_content',  'wpautop');
But it also remove
Code:
<br>
.

Please tell me how can i do that?