我尝试使用自己的插件更改好友的默认评论结构,并添加一些自定义编辑。因为我发现我们应该使用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' ) );
但是无法在评论结构中显示我的代码
中的错误答案 0 :(得分:1)
wp_list_comments包含在您的模板文件中。