Changeset 46684 for trunk/src/wp-includes/class-wp.php
- Timestamp:
- 11/09/2019 12:57:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp.php
r46474 r46684 547 547 * @param string $query_string The query string to modify. 548 548 */ 549 $this->query_string = apply_filters( 'query_string', $this->query_string ); 549 $this->query_string = apply_filters_deprecated( 550 'query_string', 551 array( $this->query_string ), 552 '2.1.0', 553 'query_vars, request' 554 ); 550 555 parse_str( $this->query_string, $this->query_vars ); 551 556 }
Note: See TracChangeset
for help on using the changeset viewer.