wp_make_content_images_responsive()
Устарела с версии 5.5.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Filters 'img' elements in post content to add 'srcset' and 'sizes' attributes.
Хуков нет.
Возвращает
Строку
. Converted content with 'srcset' and 'sizes' attributes added to images.
Использование
wp_make_content_images_responsive( $content );
- $content(строка) (обязательный)
- The raw post content to be filtered.
Заметки
- Смотрите: wp_image_add_srcset_and_sizes()
Список изменений
С версии 4.4.0 | Введена. |
Устарела с | 5.5.0 |
Код wp_make_content_images_responsive() wp make content images responsive WP 6.6.2
function wp_make_content_images_responsive( $content ) { _deprecated_function( __FUNCTION__, '5.5.0', 'wp_filter_content_tags()' ); // This will also add the `loading` attribute to `img` tags, if enabled. return wp_filter_content_tags( $content ); }