Uses
Uses | Description |
---|---|
wp-includes/wp-db.php: wpdb::load_col_info() | Loads the column metadata from the last query. |
Makes private properties readable for backward compatibility.
(string) (Required) The private member to get, and optionally process.
(mixed) The private member.
File: wp-includes/wp-db.php
public function __get( $name ) { if ( 'col_info' === $name ) { $this->load_col_info(); } return $this->$name; }
Version | Description |
---|---|
3.5.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wpdb/__get