重新调整缩略图循环问题

时间:2013-08-23 15:54:27

标签: php image post wordpress

只是想知道是否有人可以帮助我正在努力工作的一段代码。它位于一个Wordpress循环中,并且除了最新的缩略图之外还会拉出你的10个最新缩略图(因为我在页面顶部的一个额外的大标题中设置了当前的最新帖子。)

代码正在完成工作,但我无法调整缩略图的大小:

<?php
query_posts('posts_per_page=10&offset=1');
if ( have_posts() ) : while ( have_posts() ) : the_post();
?> 

<?php echo $the_query->the_post_thumbnail; ?>

<?php
if ( has_post_thumbnail($post->ID) ) { // check if the post has a Post Thumbnail
the_post_thumbnail($post->ID);
}
?>

我的函数.php

中也有这个
if ( function_exists( 'add_image_size' ) ) {
    add_image_size( 'posts-thumb', 220, 170 );
}

当我用('posts-thumb')替换第一个脚本底部的($ post-&gt; ID)时,代码按原样运行,缩略图重新调整大小但我丢失了附加的ID信息到图像。有没有办法将('posts-thumb')片段放入,而不删除任何原始代码?

1 个答案:

答案 0 :(得分:0)

    <?php
    query_posts('posts_per_page=10&offset=1');
    if ( have_posts() ) : while ( have_posts() ) : the_post();
      ?> 

   <?php echo $the_query->the_post_thumbnail; ?>
   <?php
      if ( has_post_thumbnail($post->ID) ) 
       { // check if the post has a Post Thumbnail
           echo get_the_post_thumbnail( $event->post_id, 'thumbnail', $attr );
       }
    ?>