Anyone?
Would it help if I restructured the menus? Right now they are all part of one menu, but I could split them up if that made more sense…
As a note, the admin section works just fine so there is something else at play.
Thoughts?
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.