PageRenderTime 60ms CodeModel.GetById 34ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/themes/hicms/includes/r_comment.php

https://github.com/kikaendeavor/wordpress
PHP | 21 lines | 21 code | 0 blank | 0 comment | 3 complexity | 20cb04775f62939633bed251f22614e4 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php if (get_option('swt_type') == 'Display') { ?>
  2. <div class="r_comment">
  3. <h3>最新评论</h3>
  4. <ul>
  5. <?php
  6. global $wpdb;
  7. $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url,comment_author_email, SUBSTRING(comment_content,1,16) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' AND user_id='0' ORDER BY comment_date_gmt DESC LIMIT 10";
  8. $comments = $wpdb->get_results($sql);
  9. $output = $pre_HTML;
  10. foreach ($comments as $comment) {
  11. $a= get_bloginfo('wpurl') .'/avatar/'.md5(strtolower($comment->comment_author_email)).'.jpg';
  12. $output .= "\n<li><img src='". $a ."' alt=\"$comment->comment_author\" class='avatar'/>$comment->comment_author:<br /><a href=\"" . get_permalink($comment->ID) ."#comment-" . $comment->comment_ID . "\" title=\"查看 " .$comment->post_title . "\">" . strip_tags($comment->com_excerpt)."</a></li>";
  13. }
  14. $output .= $post_HTML;
  15. $output = convert_smilies($output);
  16. echo $output;
  17. ?>
  18. </ul>
  19. </div>
  20. <?php { echo ''; } ?>
  21. <?php } else { include(TEMPLATEPATH . '/includes/r_comment2.php'); } ?>