Simple really...
Is there a way to use <?php echo $post->post_content; ?> so that it mimics <?php the_content(); ?> in the way it retains all the WYSIWYG formatting information (specifically, <p> tags)?
Thanks
Simple really...
Is there a way to use <?php echo $post->post_content; ?> so that it mimics <?php the_content(); ?> in the way it retains all the WYSIWYG formatting information (specifically, <p> tags)?
Thanks
Found it..
<?php echo apply_filters('the_content', $post->post_content); ?>
Thanks for posting your solution there boon_ , you've just saved me some time!
to me too... thanks!
You must log in to post.