wpdb::get_caller
Retrieves a comma-separated list of the names of the functions that called wpdb.
Метод класса: wpdb{}
Хуков нет.
Возвращает
string. Comma-separated list of the calling functions.
Использование
global $wpdb; $wpdb->get_caller();
Список изменений
| С версии 2.5.0 | Введена. |
Код wpdb::get_caller() wpdb::get caller WP 7.1.2
public function get_caller() {
return wp_debug_backtrace_summary( __CLASS__ );
}