Changeset 55990 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 06/22/2023 02:55:47 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r55988 r55990 1043 1043 // Handle link category sorting. 1044 1044 $direction = 'ASC'; 1045 if ( '_' === substr($order,0,1) ) {1045 if ( str_starts_with( $order, '_' ) ) { 1046 1046 $direction = 'DESC'; 1047 1047 $order = substr($order,1);
Note: See TracChangeset
for help on using the changeset viewer.