如果有人给我一些想法,或指出我正确的方向,那就太好了。
我需要在Twenty Eleven主题中构建一个自定义查询,在主页面上显示9个帖子,在最底部显示1个粘贴帖子。其他页面只会显示10个常规帖子。
你能告诉我我该怎么做。 content.php是我需要修改的唯一文件。
提前感谢您提供任何信息。
答案 0 :(得分:1)
您可以使用query_posts()函数修改返回的帖子数。 http://codex.wordpress.org/Function_Reference/query_posts
例如:
<?php
query_posts('showposts=9');
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>