【发布时间】:2014-02-09 00:14:09
【问题描述】:
我有这个 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>
谢谢
【问题讨论】:
-
请出示你的
getImage函数 -
对不起,我是新来的,刚刚输入正确,谢谢!
-
你现在仍在展示你的
getImage函数