WP_Comment::__isset()publicWP 4.4.0

Determines whether a non-public property is set.

If $name matches a post field, the comment post will be loaded and the post's value checked.

Метод класса: WP_Comment{}

Хуков нет.

Возвращает

true|false.

Использование

$WP_Comment = new WP_Comment();
$WP_Comment->__isset( $name );
$name(строка) (обязательный)
Property name.

Список изменений

С версии 4.4.0 Введена.

Код WP_Comment::__isset() WP 6.4.3

public function __isset( $name ) {
	if ( in_array( $name, $this->post_fields, true ) && 0 !== (int) $this->comment_post_ID ) {
		$post = get_post( $this->comment_post_ID );
		return property_exists( $post, $name );
	}
}