I am trying to build a one page theme using WordPress. My current loop looks like that:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2>
<?php the_title(); ?>
</a>
</h2>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
I want to display only a specific page, for instance the one with id 5. How can I realise it?