PHP Wordpress - 列出作者对作者页面的评论

Posted

tags:

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

function wpse19316_author_comments( $length )
{
    $final_length = (int) $length;
    $author_comments = get_comments( array( 'ID' => $GLOBALS['authordata']->ID ) );
    foreach ( $author_comments as $comment )
    {
        $comment_length = sublen( $comment->comment_content );
        $comment_excerpt = $comment->comment_content;
        if ( $comment_length > $final_length )
            $comment_excerpt = substr( $comment->comment_content, $final_length );
        echo $comment_excerpt.'<br />';
    }
}

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

如何在引号中获取wordpress帖子作者电子邮件

PHP 仅在作者页面上显示WordPress作者RSS Feed

php WordPress - 删除作者链接

PHP Wordpress作者搜索建议

PHP WordPress显示作者信息

PHP Wordpress显示作者信息