现在的位置: 首页 > 互联网络 > WP相关 > 正文

最近评论不显示管理员评论

2009-10-19 20:45 WP相关 ⁄ 共 1072字 ⁄ 字号 暂无评论

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-&gt;comments LEFT OUTER JOIN $wpdb-&gt;posts ON ($wpdb-&gt;comments.comment_post_ID = $wpdb-&gt;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-&gt;get_results($sql); $output = $pre_HTML; foreach ($comments as $comment) { $output .= “\n&lt;li&gt;”. “&lt;a href=\”" . get_permalink($comment-&gt;ID) . “#comment-” . $comment-&gt;comment_ID . “\” title=\”". $comment-&gt;post_title . “\”&gt;” . strip_tags($comment-&gt;com_excerpt) .”&lt;/a&gt;&lt;/li&gt;”;} $output .= $post_HTML; echo $output; }? >

2.要显示最近评论就在模板文件中加入下面代码:

< ?php if (function_exists(‘recent_comment’)) { recent_comment(); } ? >

上面只是一个最近评论调用的例子,当然不限于此方法,一般自定义函数的话,都要调用wordpress的数据库表信息,只是在调用的时候加了个判断条件,对于后台小工具的最近评论的修改以满足同样效果。
参考文献

给我留言

留言无头像?