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.

Method of the class: WP_Comment{}

No Hooks.

Return

true|false.

Usage

$WP_Comment = new WP_Comment();
$WP_Comment->__isset( $name );
$name(string) (required)
Property name.

Changelog

Since 4.4.0 Introduced.

WP_Comment::__isset() code WP 6.5.2

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 );
	}
}