get_approved_comments( int $post_id, array $args = array() )
Retrieve the approved comments for post $post_id.
描述
参数
- $post_id
-
(int)
(Required)
The ID of the post. - $args
-
(array)
(Optional)
See WP_Comment_Query::query() for information on accepted arguments.Default value: array()
返回值
(int|array) $comments The approved comments, or number of comments if $count
argument is true.
源代码
File: wp-includes/comment.php
function get_approved_comments( $post_id, $args = array() ) {
if ( ! $post_id ) {
return array();
}
$defaults = array(
'status' => 1,
'post_id' => $post_id,
'order' => 'ASC',
);
$r = wp_parse_args( $args, $defaults );
$query = new WP_Comment_Query;
return $query->query( $r );
}
更新日志
Version | 描述 |
---|---|
4.1.0 | Refactored to leverage WP_Comment_Query over a direct query. |
2.0.0 | Introduced. |
相关函数
Uses
-
wp-includes/class-wp-comment-query.php:
WP_Comment_Query::__construct() -
wp-includes/functions.php:
wp_parse_args()
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note
Contributed by
Codex
Example
In this example we will output a simple list of comment IDs and corresponding post IDs.
<?php $postID = 1; $comment_array = get_approved_comments($postID); foreach($comment_array as $comment){ echo $comment->comment_ID." => ".$comment->comment_post_ID."\n"; } ?>
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈