<div class="content" style="min-height:1022px;">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="singlepost">
<h1 class="page-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h1>
<div class="post_info">
<p><?php the_time('Y年n月j日') ?>
<span>/ </span>
<?php comments_popup_link('0 comment', '1 comment', '% comments', '', 'closed'); ?>
<span>/ </span>
<?php the_category(', ') ?>
</p>
</div>
<div class="post1">
<div class="post1text">
<!-- Post Content -->
<?php the_content(); ?>
</div>
</div>
<p class="clearfix" style="margin-left:20px;"><?php previous_posts_link('<< TheNewer', 0); ?> <span class="float right"><?php next_posts_link('ThePast >>', 0); ?></span></p>
</div>
<?php endwhile; else : ?>
<?php endif; ?>
<div class="cleared"></div>
</div>
上面的代码是我的single.php显示的内容,但是它显示的每一页都是相同的内容,那么,它有什么问题吗?是循环吗?非常感谢~
1条答案
按热度按时间monwx1rj1#
一旦你理解了基本的模板选择层次结构,这就变得非常容易了,这应该会让你开始。http://codex.wordpress.org/Template_Hierarchy
你也可以创建页面模板,这真的非常简单和有用。http://codex.wordpress.org/Pages#Creating_your_own_Page_Templates
最后,一旦您完成了所有这些工作,就可以开始使用条件标记做一些非常聪明的事情了。http://codex.wordpress.org/Conditional_Tags
尝试single.php中的以下简单代码,而不是您的代码