Changeset 49790 for trunk/src/wp-includes/functions.php
- Timestamp:
- 12/10/2020 11:57:29 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r49744 r49790 1179 1179 * @since 4.4.0 1180 1180 * 1181 * @return string[] An array of parameters to remove from the URL.1181 * @return string[] An array of query variable names to remove from the URL. 1182 1182 */ 1183 1183 function wp_removable_query_args() { … … 1214 1214 1215 1215 /** 1216 * Filters the list of query variable s to remove.1216 * Filters the list of query variable names to remove. 1217 1217 * 1218 1218 * @since 4.2.0 1219 1219 * 1220 * @param string[] $removable_query_args An array of query variable s to remove from a URL.1220 * @param string[] $removable_query_args An array of query variable names to remove from a URL. 1221 1221 */ 1222 1222 return apply_filters( 'removable_query_args', $removable_query_args );
Note: See TracChangeset
for help on using the changeset viewer.