wpdb::get_caller
Retrieves a comma-separated list of the names of the functions that called wpdb.
Method of the class: wpdb{}
No Hooks.
Returns
String. Comma-separated list of the calling functions.
Usage
global $wpdb; $wpdb->get_caller();
Changelog
| Since 2.5.0 | Introduced. |
wpdb::get_caller() wpdb::get caller code WP 7.0
public function get_caller() {
return wp_debug_backtrace_summary( __CLASS__ );
}