update_attached_file
Filters the path to the attached file to update.
Использование
add_filter( 'update_attached_file', 'wp_kama_update_attached_file_filter', 10, 2 );
/**
* Function for `update_attached_file` filter-hook.
*
* @param string $file Path to the attached file to update.
* @param int $attachment_id Attachment ID.
*
* @return string
*/
function wp_kama_update_attached_file_filter( $file, $attachment_id ){
// filter...
return $file;
}
- $file(строка)
- Path to the attached file to update.
- $attachment_id(int)
- Attachment ID.
Список изменений
| С версии 2.1.0 | Введена. |
Где вызывается хук
update_attached_file
wp-includes/post.php 898
$file = apply_filters( 'update_attached_file', $file, $attachment_id );