Changeset 38647 for trunk/src/wp-admin/upload.php
- Timestamp:
- 09/23/2016 08:32:48 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/upload.php
r37958 r38647 164 164 $location = add_query_arg( 'deleted', count( $post_ids ), $location ); 165 165 break; 166 default: 167 /** 168 * Fires when a custom bulk action should be handled. 169 * 170 * The redirect link should be modified with success or failure feedback 171 * from the action to be used to display feedback to the user. 172 * 173 * @since 4.7.0 174 * 175 * @param string $location The redirect URL. 176 * @param string $doaction The action being taken. 177 * @param array $post_ids The posts to take the action on. 178 */ 179 $location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $doaction, $post_ids ); 166 180 } 167 181
Note: See TracChangeset
for help on using the changeset viewer.