_wp_post_thumbnail_class_filter()WP 2.9.0

Adds a 'wp-post-image' class to post thumbnails. Internal use only.

Uses the begin_fetch_post_thumbnail_html and end_fetch_post_thumbnail_html action hooks to dynamically add/remove itself so as to only filter post thumbnails.

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

Хуков нет.

Возвращает

Строку[]. Modified array of attributes including the new 'wp-post-image' class.

Использование

_wp_post_thumbnail_class_filter( $attr );
$attr(string[]) (обязательный)
Array of thumbnail attributes including src, class, alt, title, keyed by attribute name.

Список изменений

С версии 2.9.0 Введена.

Код _wp_post_thumbnail_class_filter() WP 6.5.2

function _wp_post_thumbnail_class_filter( $attr ) {
	$attr['class'] .= ' wp-post-image';
	return $attr;
}