Warning: Invalid argument supplied for foreach() in /home/ftp/512j.com/h/i/d/xxx/blog/wp-content/themes/4u-hemingway/functions.php on line 15

解决方法:找到functions.php的第15行,如下

foreach ($comments as $comment)

改为:

foreach ((array)$comments as $comment)