From 9a1ec7be98e95adbf0da051a80a7d56e17aaf875 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 16 Oct 2008 20:05:34 +0000 Subject: [PATCH] Add avatar_size arg. Props Otto42. see #7635 git-svn-id: https://develop.svn.wordpress.org/trunk@9207 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index ae58ad38cc..9d35a271df 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1071,7 +1071,7 @@ class Walker_Comment extends Walker {
- + %s Says:'), get_comment_author_link()) ?>
comment_approved == '0') : ?> @@ -1132,7 +1132,7 @@ function wp_list_comments($args = array(), $comments = null ) { $comment_depth = 1; $defaults = array('walker' => null, 'depth' => '', 'style' => 'ul', 'callback' => null, 'end-callback' => null, 'type' => 'all', - 'page' => get_query_var('cpage'), 'per_page' => ''); + 'page' => get_query_var('cpage'), 'per_page' => '', 'avatar_size' => 32); $r = wp_parse_args( $args, $defaults );