wp_get_attachment_image_attributes хук-фильтр . WP 2.8.0
Filters the list of attachment image attributes.
Использование
add_filter( 'wp_get_attachment_image_attributes', 'filter_function_name_7977', 10, 3 ); function filter_function_name_7977( $attr, $attachment, $size ){ // filter... return $attr; }
- $attr(строка[])
- Array of attribute values for the image markup, keyed by attribute name. See wp_get_attachment_image().
- $attachment(WP_Post)
- Image attachment post.
- $size(строка/число[])
- Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
Список изменений
С версии 2.8.0 | Введена. |
Где вызывается хук
wp_get_attachment_image_attributes
wp-includes/media.php 1090
$attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment, $size );
Где используется хук в ядре WordPress
wp-includes/media.php 1966
add_filter( 'wp_get_attachment_image_attributes', '_wp_post_thumbnail_class_filter' );
wp-includes/media.php 1979
remove_filter( 'wp_get_attachment_image_attributes', '_wp_post_thumbnail_class_filter' );