WP_User_Query::__get()
Makes private properties readable for backward compatibility.
Method of the class: WP_User_Query{}
No Hooks.
Return
Mixed
. Property.
Usage
$WP_User_Query = new WP_User_Query(); $WP_User_Query->__get( $name );
- $name(string) (required)
- Property to get.
Changelog
Since 4.0.0 | Introduced. |
WP_User_Query::__get() WP User Query:: get code WP 6.1.1
public function __get( $name ) { if ( in_array( $name, $this->compat_fields, true ) ) { return $this->$name; } }