<p>
<p class="grid_9">
<?php
echo $post->post_content;
?>
</p>
</p>
But result is not what I expected:
<p> </p>
<p class="grid_9"> </p>
Post's content
Maybe someone has any ideas how to solve it?
I tried
<p>
<p class="grid_9">
<?php
echo apply_filters('the_content',$post->post_content);
?>
</p>
</p>
But the result is the same.
Nested paragraph tags don’t work properly because the closing
</p>is optional, you should use a div, or other container instead of your outside