wpdb::get_caller()
Retrieve the name of the function that called wpdb.
Description
Searches up the list of functions until it reaches the one that would most logically had called this method.
Return
(string|array) The name of the calling function
Source
File: wp-includes/wp-db.php
public function get_caller() {
return wp_debug_backtrace_summary( __CLASS__ );
}
Changelog
Version | Description |
---|---|
WP-2.5.0 | Introduced. |