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 );
function wpse19316_author_comments( $length ) { $final_length = (int) $length; foreach ( $author_comments as $comment ) { $comment_length = sublen( $comment->comment_content ); $comment_excerpt = $comment->comment_content; if ( $comment_length > $final_length ) echo $comment_excerpt.'<br />'; } }
以上是关于Wordpress-在作者页面列出作者评论的主要内容,如果未能解决你的问题,请参考以下文章