Changeset 49942 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 01/07/2021 02:15:27 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r49912 r49942 2084 2084 public function log_query( $query, $query_time, $query_callstack, $query_start, $query_data ) { 2085 2085 /** 2086 * Filters the custom query data being logged.2086 * Filters the custom data to log alongside a query. 2087 2087 * 2088 2088 * Caution should be used when modifying any of this data, it is recommended that any additional 2089 * information you need to store about a query be added as a new associative entry to the fourth 2090 * element $query_data. 2089 * information you need to store about a query be added as a new associative array element. 2091 2090 * 2092 2091 * @since 5.3.0 … … 3647 3646 3648 3647 /** 3649 * Retrieves the name of the function that called wpdb. 3650 * 3651 * Searches up the list of functions until it reaches the one that would 3652 * most logically had called this method. 3648 * Retrieves a comma-separated list of the names of the functions that called wpdb. 3653 3649 * 3654 3650 * @since 2.5.0
Note: See TracChangeset
for help on using the changeset viewer.