你好,我是收费蓝色主题,我的博客,我想在分类页面也实现缩略图功能。
所以将index.php的如下代码
<?php
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" ><?php the_post_thumbnail( 'thumbnail', array('class' => 'post-thumbnail')); ?></a>
<?php } else {?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<img src="<?php echo catch_that_image() ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" class="post-thumbnail" /></a>
<?php } ?>
拷贝到了archive.php中,可是显示的结果却不同行,请问如何调整
|