逍遥浪子 发表于 星期五, 2011年03月11日
浏览 479 次
使用如下代码:
<!– Start Recent Comments –>
<?php
global $comment;
if ( $comments = $wpdb->get_results(“SELECT comment_author, comment_author_url, comment_ID,comment_content, comment_post_ID FROM $wpdb->comments WHERE comment_approved=’1′ ORDER BY comment_date_gmt
DESC LIMIT 8″) ) ;
<!–调用最新8条评论–>
?>
...