有没有办法在我的网站上使用 SVG 图像,如果浏览器/设备不支持它,请将扩展名切换为 png?有一个更好的方法吗?
注意:我使用的是<img>
标签和 Modernizr。
这是我动态吐出图像的代码。
<?php $attachments = attachments_get_attachments(); ?>
<?php if( function_exists( 'attachments_get_attachments' ) ) {
$attachments = attachments_get_attachments();
$total_attachments = count( $attachments ); if( $total_attachments ) : ?><?php for( $i=0; $i<$total_attachments; $i++ ) : ?>
<img src="<?php echo $attachments[$i]['location']; ?>" alt="<?php echo $attachments[$i]['title']; ?>" class="full" />
<?php endfor; ?><?php endif; ?><?php } ?>
输出以下内容:
<img src="http://mysiteurl.net/image.png" alt="Image Title" class="full wp-image-287" />