更改buddypress插件中的注释结构

时间:2014-07-09 12:22:47

标签: php wordpress buddypress

我尝试使用自己的插件更改好友的默认评论结构,并添加一些自定义编辑。因为我发现我们应该使用wp_list_comments和回调函数。我使用下面的示例函数:

function my_blog_comments( $comment, $args, $depth ) {
    $GLOBALS['comment'] = $comment;

    if ( 'pingback' == $comment->comment_type )
        return false;

    if ( 1 == $depth )
        $avatar_size = 50;
    else
        $avatar_size = 25;
     ...
 }
wp_list_comments( array( 'callback' => 'my_blog_comments', 'type' => 'comment' ) );

但是无法在评论结构中显示我的代码

中的错误

1 个答案:

答案 0 :(得分:1)

wp_list_comments包含在您的模板文件中。