Changeset 38647 for trunk/src/wp-admin/edit-comments.php
- Timestamp:
- 09/23/2016 08:32:48 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-comments.php
r37914 r38647 81 81 break; 82 82 } 83 } 84 85 if ( ! in_array( $doaction, array( 'approve', 'unapprove', 'spam', 'unspam', 'trash', 'delete' ), true ) ) { 86 /** 87 * Fires when a custom bulk action should be handled. 88 * 89 * The redirect link should be modified with success or failure feedback 90 * from the action to be used to display feedback to the user. 91 * 92 * @since 4.7.0 93 * 94 * @param string $redirect_to The redirect URL. 95 * @param string $doaction The action being taken. 96 * @param array $comment_ids The comments to take the action on. 97 */ 98 $redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $comment_ids ); 83 99 } 84 100
Note: See TracChangeset
for help on using the changeset viewer.