Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add paragraph tags to post content in wordpress?

I'm getting some pages with the get_pages function and echoing the page content like: $page->post_content, but contrary to the_content(), this way wordpress wont add p tags automatically, is there any way to add them here?

Thanks in advance

like image 787
Javier Villanueva Avatar asked Mar 07 '11 23:03

Javier Villanueva


1 Answers

You should use <?php echo apply_filters('the_content', $page->post_content); ?>

like image 196
José Carlos Avatar answered Oct 08 '22 07:10

José Carlos