我正在尝试创建一个插件,这将成为一种评论档案。
我看过get_comment()
。
我希望显示评论的来源,特别是附有评论的帖子的标题。这是我的代码的一部分:
if ( $comments ) {
foreach ( $comments as $comment ) {
// here you can display the comment in the way you want
echo 'from: ' . $comment->i want comment post title here . '<br/>';
echo '<p>' . $comment->comment_content . '</p>';
}
}
怎么做?
答案 0 :(得分:1)
以下是您的操作方法:
<?php
if ( $comments )
foreach($comments as $comment){
// here you can display the comment in the way you want
echo 'from: ' . get_the_title($comment->comment_post_ID) . '<br/>';
echo '<p>' . $comment->comment_content . '</p>;
}
?>