我在Twentyeleven的index.php文件中使用以下代码
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php if ( have_posts() ) : ?>
<?php twentyeleven_content_nav( 'nav-above' ); ?>
<?php query_posts('cat=4&showposts='.get_option('posts_per_page')); ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="post-thumb-title">
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail(array(632,305));?></a>
<p class="thumb-title"><?php the_title(); ?></p>
</div>
<?php endwhile; ?>
<?php twentyeleven_content_nav( 'nav-below' ); ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
从上面的代码中我可以看到,我只显示Cat ID = 4的帖子,并且我使用css覆盖图像缩略图上的标题,该缩略图是使用“the_post_thumbnail”函数生成的尺寸。 问题是,首页只显示帖子的标题和缩略图仅适用于第一篇帖子。
您可以在此处查看网站:http://fusion.fusionconstruction.co.uk/
选择了类别ID 4的其他帖子的链接:
http://fusion.fusionconstruction.co.uk/fusion-media-at-revolution-round-1/
http://fusion.fusionconstruction.co.uk/fusion-launch-new-website-for-dean-downing/
我想显示与第一个类似的所有帖子。
谢谢!
答案 0 :(得分:1)
<?php query_posts('cat=4&showposts='.get_option('posts_per_page')); ?>
应该是
<?php query_posts('cat=4&showposts='.get_option('posts_per_page')); ?>
也就是说,你不应该对&符号进行urlencode。希望这会搞砸你的查询。
此外,the_post_thumbnail()
会显示帖子的精选图片,因此要生成缩略图,您需要确保所有帖子都有精选图片。