我正在构建一个主题,我发现这一切都非常简单明了。
然而,我不明白为什么我的归档WordPress博客帖子有一个完全空白的页面?
我了解WordPress的层次结构,我有一个页面名为:
archive.php
这是我在该页上的代码:
<?php get_header();?>
<div class="container">
<h1><?php echo single_cat_title();?></h1>
<?php if( have_posts() ): while ( have_posts() ): the_post();?>
<div class="card">
<div class="card-body">
<h3><?php the_title();?></h3>
<?php the_excerpt();?>
<a href="<?php the_permalink();?>" class="btn btn-success"> read more</a>
</div>
</div>
<?php endwhile; else: endif;?>
<?php previous_posts_link();?>
<?php next_posts_link();?>
</div>
<?php get_footer();?>
当我在浏览器中查看该页面时,即我在WordPress中指定的“博客页面”(在“阅读”中选择),我什么也看不到,完全空白,甚至没有可查看的源。
你知道我在这里犯了什么(基本)错误吗。。。。
谢谢