从img标签中省略宽度/高度属性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从img标签中省略宽度/高度属性相关的知识,希望对你有一定的参考价值。
This is an example of omitting the width and height attributes from a thumbnail img tag in Wordpress. Useful if you are working on a responsive design. Use inside The Loop.
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail' ); if ($image) : ?> <img src="<?php echo $image[0]; ?>" alt="" /> <?php endif; ?>
以上是关于从img标签中省略宽度/高度属性的主要内容,如果未能解决你的问题,请参考以下文章