主循环:
建立single.php文件,调出单篇文章:
<?php if(have_posts()): ?>
<?php while( have_posts() ): ?>
<?php the_post();?>
<h1><?php the_title();?></h1>
<h5><?php the_content();?><</h5>
<?php endwhile;?>
<?php endif; ?>
等价于:
<?php if(have_posts()){ ?>
<?php while( have_posts() ){ ?>
<?php the_post();?>
<h1><?php the_title();?></h1>
<h5><?php the_content();?><</h5>
<?php } ?>
<?php } ?>
建立category.php文件,循环调文章标题内容:
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<h1><?php the_title();?></h1>
<h3><?php the_content();?></h3>
<?php endwhile; ?>
<?php endif; ?>
建立category.php文件,循环调文章标题内容,如果没有相关文章:
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<h1><?php the_title();?></h1>
<h3><?php the_content();?></h3>
<?php endwhile; ?>
<!--如果没有相关文章-->
<?php else: ?>
<h2>暂时没有文章</h2>
<?php endif; ?>