Дано:
$args = array(
'number' => 4,
'orderby' => 'comment_date',
'order' => 'DESC',
'status' => 'approve',
'type' => 'comment',
);
$comments = get_comments($args);
foreach ($comments as $coment) {
$text = mb_substr(strip_tags($coment->comment_content), 0, 54);
?>
<div class="item">
<?
$comm_link = get_comment_link( $coment->comment_ID );
?>
<div class="user">
<a href="<?=$comm_link?>" class="avatar"><span><?=$coment->comment_author?></span></a>
<div class="date"><?=$coment->comment_date?></div>
</div>
<div class="title">
<a href="<?=$comm_link?>"><em><?=$text?>..</em></a>
</div>
</div>
<?}?>
Таким способом я вывел последние комментарии в сайдбар.
Но мне надо сюда еще и добавить заголовок поста, к которому относится комментарий.
Как получить заголовок поста по id комментария? Можете подсказать?