Solution:
First, check the comments.php file in your theme folder. Look for code that might look like this:
wp_list_comments( array( ‘callback’ => ‘xxxx_comment’ ) );
Change it to the simpler form:
wp_list_comments();
This should resolve the issue.
Solution:
First, check the comments.php file in your theme folder. Look for code that might look like this:
wp_list_comments( array( ‘callback’ => ‘xxxx_comment’ ) );
Change it to the simpler form:
wp_list_comments();
This should resolve the issue.