我现在被困在这种情况下。
我有 3 个不同大小的帖子缩略图。
根据用户屏幕的大小,我只需要显示一张图像。我不喜欢使用 css 媒体查询或通过 css 调整相同图像的大小,因为它会失真。无论如何,是否有可能使用PHP IF来实现?
就像是:
如果博文宽度 == 360px 显示<?php the_post_thumbnail('post-thumbnails2200px', array( 'id' => "FeatureImage")); ?>
else if .blogpost width == 300px display<?php the_post_thumbnail('post-thumbnails1280px', array( 'id' => "FeatureImage")); ?>
else if .blogpost width == 250px display<?php the_post_thumbnail('post-thumbnails600px', array( 'id' => "FeatureImage")); ?>
这是html结构:
<div class="blogpost" id="blogpost">
<a class="post_title" href="<?php the_permalink() ?>" rel="bookmark" alt="<?php the_title(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('post-thumbnails2200px', array( 'id' => "FeatureImage")); ?>
</a>
</div>