私のサイトで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" />