图像调整PHP代码的大小

时间:2014-02-08 16:07:45

标签: php html css image

我有这个PHP代码,显示我主页上帖子的第一张图片。图像大小似乎是随机的。我想让它们大小相同。

您可以在页面底部看到三张图片:http://www.wha2wear.com/ 这就是代码:

<div class="blog">
    <h2><span>Sneak peak</span></h2>
    <ul>
<?php query_posts('orderby=comment_count&posts_per_page=6'); if ( have_posts() ) :  while ( have_posts() ) : the_post(); ?>

<li>
<h3 class="short_title"><a title="Post: <?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php echo ShortTitle(get_the_title()); ?> </a></h3>

<a href="<?php the_permalink(); ?>"><?php getImage('1'); ?></a>



<?php endwhile; ?></li>
<?php else : ?>
<p>Sorry, no posts were found.</p>
<?php endif; ?>


    </ul>


    </div>

谢谢

1 个答案:

答案 0 :(得分:3)

使用HTML,您需要使用CSS来调整图片大小。你可以使用:

<img src="/page-to-image" style="width:100px; hight:200px" />