wpdb::get_caller()

Retrieves a comma-separated list of the names of the functions that called wpdb.


Return

(string) Comma-separated list of the calling functions.


Source

File: wp-includes/class-wpdb.php

	public function get_caller() {
		return wp_debug_backtrace_summary( __CLASS__ );
	}

Changelog

Changelog
Version Description
2.5.0 Introduced.