<?php
$args = array(
'p' => 59, // ID нужной записи
'post_type' => 'post', // Тип записи
'post_status' => 'publish' // Статус
);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
the_content();
}
wp_reset_postdata();
}
?>