WP_CLI\Fetchers
Comment::get
Get a comment object by ID
Метод класса: Comment{}
Хуков нет.
Возвращает
WP_Comment|Массив|false. The item if found; false otherwise.
Использование
$Comment = new Comment(); $Comment->get( $arg );
- $arg(строка) (обязательный)
- The raw CLI argument.
Код Comment::get() Comment::get WP-CLI 2.13.0-alpha
public function get( $arg ) {
$comment_id = (int) $arg;
$comment = get_comment( $comment_id );
if ( null === $comment ) {
return false;
}
return $comment;
}