Obtenga el contenido de una página específica (por ID)

	$id=352; 
	$post = get_post($id); 
	$content = apply_filters('the_content', $post->post_content); 
	echo $content;  
7uc1f3r