Wordpress-在作者页面列出作者评论

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-在作者页面列出作者评论相关的知识,希望对你有一定的参考价值。

Thanks to @kaiser on WP answers for this.

Place this function in your functions.php file, then use it in your template with the function call like:

wpse19316_author_comments( 100 );
  1. function wpse19316_author_comments( $length )
  2. {
  3. $final_length = (int) $length;
  4. $author_comments = get_comments( array( 'ID' => $GLOBALS['authordata']->ID ) );
  5. foreach ( $author_comments as $comment )
  6. {
  7. $comment_length = sublen( $comment->comment_content );
  8. $comment_excerpt = $comment->comment_content;
  9. if ( $comment_length > $final_length )
  10. $comment_excerpt = substr( $comment->comment_content, $final_length );
  11. echo $comment_excerpt.'<br />';
  12. }
  13. }

以上是关于Wordpress-在作者页面列出作者评论的主要内容,如果未能解决你的问题,请参考以下文章

wordpress多作者显示问题

CSS 如何:在WordPress 2.7中设置作者评论

如何:在wordpress2.7中设置作者评论的样式

wordpress博客文章作者信息页面显示不了

我正在尝试将评论作者姓名链接到网站 url/profile/author 用户名

Wordpress动态添加管理员或作者类到评论