Changeset 55474
- Timestamp:
- 03/07/2023 01:11:32 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r55450 r55474 3145 3145 } else { 3146 3146 wp_update_post( $post ); 3147 3148 /**3149 * Fires after an attachment has been updated via the Ajax handler3150 * and before the JSON response is sent.3151 *3152 * When checking if an action is being done, `doing_action( 'wp_ajax_save-attachment' )`3153 * may be used if that is more convenient.3154 *3155 * @since 6.2.03156 *3157 * @param array $post The attachment data.3158 * @param array $changes An array containing the updated attachment attributes.3159 */3160 do_action( 'wp_ajax_save_attachment_updated', $post, $changes );3161 3147 } 3162 3148
Note: See TracChangeset
for help on using the changeset viewer.