我没有对此进行测试,但根据您的问题,这应该会让您走上正轨:
<?php
$id = 4; // The Page or post ID
$page_data = get_post( $id );
$title = $page_data->post_title;
$content = $page_data->post_content;
$excerpt = substr($content, 0, 155);
$featured_image = wp_get_attachment_url( get_post_thumbnail_id($id, \'thumbnail\') );
?>
<div class="post">
<h1><?php echo $title; ?></h1>
<div class="featured"><img src="<?php echo $featured_image; ?>" /></div>
<p class="excerpt"><strong><?php echo $excerpt; ?></strong></p>
<p class="content"><?php echo $content; ?></p>
</div>