Imagem resolution responsive

时间:2013-04-29 作者:Lucas Morato

我有一个add_image_size 调整图像大小,但当分辨率为980px时,图像大小仍然相同。当分辨率低于980px时,我希望图像是100%,但我需要继续使用代码add_thumbnail_size.

非常感谢。

1 个回复
SO网友:Adi

您可以使用timthumb根据需要调整图像大小。

if ( has_post_thumbnail() ) {
                    // get the src of the large size featured image
                    $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), \'large\' );
                    $thumbnailSrc = $src[0];
                    // output image resized with timthumb 
                    ?>
                    <a href="<?php echo get_post_meta($postid, \'post_link\', true) ?>" target="_blank">
                    <img src="<?php bloginfo(\'template_directory\'); ?>/js/timthumb.php?src=<?php echo $thumbnailSrc; ?>&h=240&w=245" alt="">
                    </a>
                    <?php } ?>
下载那个文件timthumb

希望你的问题能解决。

结束