1.在当前主题function.php内加些内容:
下面的代码是个一般的简单最近评论代码,控制不显示管理员评论留言的代码就是上面红色部分。
< ? php function recent_comment($comment_nums = 20) {global $wpdb; $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, SUBSTRING(comment_content,1,30) 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 !=1 ORDER BY comment_date_gmt DESC LIMIT $comment_nums”; $comments = $wpdb->get_results($sql); $output = $pre_HTML; foreach ($comments as $comment) { $output .= “\n<li>”. “<a href=\”" . get_permalink($comment->ID) . “#comment-” . $comment->comment_ID . “\” title=\”". $comment->post_title . “\”>” . strip_tags($comment->com_excerpt) .”</a></li>”;} $output .= $post_HTML; echo $output; }? >
2.要显示最近评论就在模板文件中加入下面代码:
< ?php if (function_exists(‘recent_comment’)) { recent_comment(); } ? >
上面只是一个最近评论调用的例子,当然不限于此方法,一般自定义函数的话,都要调用wordpress的数据库表信息,只是在调用的时候加了个判断条件,对于后台小工具的最近评论的修改以满足同样效果。
参考文献