Thread Starter
eoppy
(@eoppy)
Tracked it to a plug-in that was turning off post revisions. Postie.
Thread Starter
eoppy
(@eoppy)
Just what I was looking for. Worked great. Thanks so much!
Thread Starter
eoppy
(@eoppy)
Sure,
<div id=”lastcomment”>
<?php
$args = array(
‘status’ => ‘approve’,
‘number’ => ‘1’,
‘post_id’ => $post->ID, // use post_id, not post_ID
);
$comments = get_comments($args);
foreach($comments as $comm) :
echo(‘<span style=”font-weight:bold;”>’ . $comm->comment_author . ‘</span> said:
‘ . $comm->comment_content);
endforeach;
?>
</div>