我将此代码用于sidebar.php文件以获取最近的帖子缩略图:
<ul id="popular-comments">
<?php $pc = new WP_Query('orderby=$current_post&posts_per_page=5'); ?>
<?php while ($pc->have_posts()) : $pc->the_post(); ?> <li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(75,75)); ?></a> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<p>Posted by <strong><?php the_author() ?></strong> on the
<?php the_time('F jS, Y') ?> with
<?php comments_popup_link('No Comments;', '1 Comment', '% Comments'); ?></p> </li>
<?php endwhile; ?> </ul>
它运行正常但我想调整它以为每个类别添加唯一缩略图。例如:我将在我的主题目录中创建一个名为images的文件夹,然后为每个类别添加缩略图,以便我的侧边栏动态地从此文件夹继承后缩略图(注意:我正在使用子主题)任何人都可以为我调整代码或者来自这样做的另一招?