WP - Вывод информации определенного поста
<?php
$post_id = 9;
$post_about = get_post( $post_id );
$content_about_content = $post_about->post_content;
$content_about_title = $post_about->post_title;
$content_about_excerpt = $post_about->post_excerpt;
?>
//Контент
<p><?php echo $content_about_content ?></p>
//Ссылка на пост
<a href="<?php echo get_permalink( $post_id ); ?>"></a>
//Миниатюра поста
<?php echo get_the_post_thumbnail( $post_id, 'full' ); ?>