Changeset 37696 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 06/14/2016 03:05:21 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r37488 r37696 206 206 $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location ); 207 207 } 208 wp_redirect( $location ); 208 209 /** 210 * Filters the taxonomy redirect destination URL. 211 * 212 * @since 4.6.0 213 * 214 * @param string $location The destination URL. 215 * @param object $tax The taxonomy object. 216 */ 217 wp_redirect( apply_filters( 'redirect_term_location', $location, $tax ) ); 209 218 exit; 210 219 }
Note: See TracChangeset
for help on using the changeset viewer.