I was trying to add a page to my index page at the top (before the posts), like this:
...
<div id="content" class="narrowcolumn">
<div>
<?php
$insertPage = get_page_by_title('InsertPage');
$insertPage->post_content;
?>
</div>
<?php if (have_posts()) : ?>
...
The code doesn’t seem to display anything though. Is there something I am doing wrong?
Thanks.