_wp_post_thumbnail_class_filter_remove()
Removes the '_wp_post_thumbnail_class_filter' callback from the wp_get_attachment_image_attributes hook. Internal use only.
Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
_wp_post_thumbnail_class_filter_remove( $attr );
- $attr(string[]) (обязательный)
- Array of thumbnail attributes including src, class, alt, title, keyed by attribute name.
Список изменений
С версии 2.9.0 | Введена. |
Код _wp_post_thumbnail_class_filter_remove() wp post thumbnail class filter remove WP 6.7.1
function _wp_post_thumbnail_class_filter_remove( $attr ) { remove_filter( 'wp_get_attachment_image_attributes', '_wp_post_thumbnail_class_filter' ); }