我在理解世界上最简单的概念时遇到了一些问题,当涉及到构建一个单一的。php文件并使用分页。
下面的代码显示了wordpress循环及其内容,最后是分页。然而,分页并没有出现在我面前,看看二十个10主题就知道这就是你应该怎么做的。。。。发生了什么事?这不是自定义循环。
<div class="span6">
<?php
global $post;
$thumb_nail_args = array(
\'align\' => \'centered\',
\'class\' => \'thumbnail marginBottom20 marginTop20\'
);
if(have_posts()){
while(have_posts()): the_post();
?>
<h1><?php the_title() ?></h1>
<p>
<em><strong>Written by: </strong>
<a href="<?php echo get_author_posts_url(get_the_author_meta( \'ID\' )); ?>">
<?php the_author_meta(\'display_name\'); ?></a>
</em>
</p>
<p><?php
the_post_thumbnail(\'full\', $thumb_nail_args);
the_content();
?></p>
<?php
endwhile;
?>
<ul class="pager paddingBottom20">
<li class="previous">
<?php next_posts_link(); ?>
</li>
<li class="next">
<?php previous_posts_link(); ?>
</li>
</ul><?php
}
if(\'open\' == $post->comment_status){
comments_template();
}
?>
</div>