wordpress中的著名循环
首先,在深入研究任何代码之前,我们首先要确保我们有不止一篇博客文章可以工作。因此,我们要去自己的wordpress站点,从侧边栏单机Posts(文章),进行创建
在执行代码的时候会优先执行single.php如果它不存在,则会寻找index.php
码
php
<?php
while(have_posts()){
the_post();
?>
<h2>
<a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a>
</h2>
<?php
the_content();
?>
<hr>
<?php
}
?>