时间:2024-04-05
WP_Comment_Query 是用来查询WordPress评论数据的PHP类,源文件位于wp-includes/comment.php文件,我们可以使用该类查询 WordPress 数据库中 wp_comments 和 wp_commentmeta 数据表中的数据,该类从 WordPress 3.1 开始引入,只要 WordPress 的版本号大于等于 3.1,都可以直接使用 WPCommentQuery 类查询数据。
<?php $args=array( //类参数 ); //新建查询 $comments_query=newWP_Comment_Query; $comments=$comments_query->query($args); //循环输入评论数据 if($comments){ foreach($commentsas$comment){ echo'<p>'.$comment->comment_content.'</p>'; } }else{ echo'没有查询到数据。'; } ?>
'hold'–未通过审核的评论
'approve'–已审核的评论
'spam'–被标记未垃圾的评论
'trash'–回收站中的评论
'ASC'–升序(从低到高)
'DESC'–降序(从高到低)
'ids'–评论ID
'*'–所有评论字段
显示包含某
Copyright © 2019-2024 2543.cn