我正在建立一个最近评论的小列表,并希望链接到评论所在的实际帖子。不幸的是,没有comment_permalink
或post_permalink
我可以找到,所以我想也许会有一个get_permalink()
功能,但同样,我在http://codex.wordpress.org/Function_Reference/上找不到。
单独来看$post->ID
,我如何才能找到该特定帖子的永久链接?并不是说它是完全必要的,但这是我到目前为止所拥有的:
<?php $comments = get_comments( array( 'status'=>'approve', 'number'=>5 ) ); ?>
<p class="recently-posted-comments">Recent Comments</p>
<ul>
<?php foreach ($comments as $comment): $parent = get_post($comment->comment_post_ID); ?>
<li><?php print $comment->comment_author; ?>
on <?php print $parent->post_title; ?></li>
<?php endforeach; ?>
</ul>
我的意图是将其转换$parent->post_title
为永久链接。