广告服务包/fly-image-tag生成器

1.0.14 2023-08-09 21:14 UTC

This package is auto-updated.

Last update: 2024-09-09 23:40:50 UTC


README

Fly 动态图片调整大小插件提供支持,允许输出HTML <picture>标签,支持多种格式如WebP,以及多种大小如2x。

vendi_fly_get_attachment_picture(get_post_thumbnail_id($location->ID), 'location-listing')

输出

<picture>
    <source srcset="https://example.com/wp-content/uploads/fly-images/123/ABC-scaled-300x300-ct.jpeg.webp" type="image/webp" media="(min-resolution: 150dpi)" />
    <source srcset="https://example.com/wp-content/uploads/fly-images/123/ABC-scaled-300x300-ct.jpeg" media="(min-resolution: 150dpi)" type="image/jpeg" />
    <source srcset="https://example.com/wp-content/uploads/fly-images/123/ABC-scaled-150x150-ct.jpeg.webp" type="image/webp" />
    <img width="150" height="150" src="https://example.com/wp-content/uploads/fly-images/123/ABC-scaled-150x150-ct.jpeg" alt="ABC" loading="lazy" />
</picture>