Pull content from specific page, post with preserve formatting

$my_id = 100;
$post_id_100 = get_post($my_id);
$content = $post_id_100->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;

Leave a Reply

Your email address will not be published.