Obtener el post_content usando un id de post Obtener el post_content usando un id de post

Obtener el post_content usando un id de post

[vc_row][vc_column][vc_column_text]$post = get_post(12); // specific post
$the_content = apply_filters('the_content', $post->post_content);
if ( !empty($the_content) ) {
echo $the_content;
}
[/vc_column_text][/vc_column][/vc_row]