WP_Query::__get()publicWP 4.0.0

Makes private properties readable for backward compatibility.

Method of the class: WP_Query{}

No Hooks.

Return

Mixed. Property.

Usage

global $wp_query;
$wp_query->__get( $name );
$name(string) (required)
Property to get.

Changelog

Since 4.0.0 Introduced.

WP_Query::__get() code WP 6.5.2

public function __get( $name ) {
	if ( in_array( $name, $this->compat_fields, true ) ) {
		return $this->$name;
	}
}