Thanks for the link. Sorry yes not very descriptive.
What I want to do is emulate server side includes but do it with posts.
Let’s say I create my custom Page in wordpress and I want to include the content from 3 specific posts. What I’m looking for is some piece of code that looks something like this:
<div class=”header”>
<?php get_post_content(‘id=9’); ?>
</div>
<div class=”content”>
<?php get_post_content(‘id=10’); ?>
</div>
<div class=”footer”>
<?php get_post_content(‘id=11’); ?>
</div>
Hope that illustrates what I have in mind.