被围观者 {}

comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND comment_author='$see' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 30"; $comments = $wpdb->get_results($sql); foreach ($comments as $comment) { $output .= "\n
  • ".get_avatar( $comment, $size = '35')."
    ". strip_tags($comment->com_excerpt) ."
  • "; } $output = convert_smilies($output); echo $output; ?>