wpseek.com
A WordPress-centric search engine for devs and theme authors



log_query_custom_data › WordPress Filter Hooks

Since5.3.0
Deprecatedn/a
apply_filters( 'log_query_custom_data', $query_data, $query, $query_time, $query_callstack, $query_start )
Parameters: (5)
  • () query_data Custom query data.
    Required: Yes
  • () query The query's SQL.
    Required: Yes
  • () query_time Total time spent on the query, in seconds.
    Required: Yes
  • () query_callstack Comma-separated list of the calling functions.
    Required: Yes
  • () query_start Unix timestamp of the time at the start of the query.
    Required: Yes
Defined at:
Codex:

Filters the custom data to log alongside a query.

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 array element.




Source

$query_data = apply_filters( 'log_query_custom_data', $query_data, $query, $query_time, $query_callstack, $query_start );