No – the posts might still help someone else with the same or a very similar problem.
Yes, that someone is me. Thanks for leaving the post, posted.
@owstopit, can you please explain, for a newbie like myself, your solution?
I was drawing the content using this method:
<?php
$contact_id = 73;
$contact_post_id = get_post($contact_id);
$title = $contact_post_id->post_title;
$content = $contact_post_id->post_content;
?>
<li id="contact_div" class="invis post">
<div id="contact_content">
<h4><?php echo $title; ?></h4>
<?php echo $content; ?>
</div>
</li>
what?….