The Codex 使您看起来可以通过ID查询特定的注释,就像GenerateWP query generator, 但我无法将其用于这些示例中的任何一个。甚至通过WP_Comment_Query:query()
代码清楚地表明,您应该能够在参数中传递ID。
也就是说,使用get_comment()
是你现在唯一的出路。以下是基于原始代码可以实现的功能:
<?php
/**
* Get the contents of a single comment by its ID.
*
* @param int $comment_id The ID of the comment to retrieve.
*
* @return string The comment as a string, if present; null if no comment exists.
*/
function wpse120039_get_comment_by_id( $comment_id ) {
$comment = get_comment( intval( $comment_id ) );
if ( ! empty( $comment ) ) {
return $comment->comment_content;
} else {
return \'\';
}
}
echo \'<p>\' . wpse120039_get_comment_by_id( \'34\' ) . \'</p>\';