Get the content of a specific page (by ID) code example
Example: Get the content of a specific page (by ID)
$id=352;
$post = get_post($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
$id=352;
$post = get_post($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;