apply_filters( 'log_query_custom_data', array $query_data , string $query , float $query_time , string $query_callstack , float $query_start )
Filters the custom query data being logged.
Description
Caution should be used when modifying any of this data, it is recommended that any additional information you need to store about a query be added as a new associative entry to the fourth element $query_data.
Parameters
- $query_data
-
(array) Custom query data.
- $query
-
(string) The query's SQL.
- $query_time
-
(float) Total time spent on the query, in seconds.
- $query_callstack
-
(string) Comma separated list of the calling functions.
- $query_start
-
(float) Unix timestamp of the time at the start of the query.
Source
File: wp-includes/wp-db.php
Changelog
Version | Description |
---|---|
5.3.0 | Introduced. |