存档页面没有显示任何内容-WordPress层次结构有问题吗?

时间:2019-12-16 作者:Henry

我正在构建一个主题,我发现这一切都非常简单明了。

然而,我不明白为什么我的归档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中指定的“博客页面”(在“阅读”中选择),我什么也看不到,完全空白,甚至没有可查看的源。

你知道我在这里犯了什么(基本)错误吗。。。。

谢谢

1 个回复
最合适的回答,由SO网友:Monkey Puzzle 整理而成

您指定的“博客页面”(在“阅读”中选择)将使用索引。php文件(或home.php),而不是归档文件。php文件。

WP hierarchy

相关推荐

rewrite rules hierarchical

我希望我的WordPress遵循以下规则:/productes/ 包含所有产品的页面/productes/[category]/ 包含该类别所有产品的分类页面/productes/[category]/[subcategory]/ 包含该类别所有产品(与2相同)的分类页面/[productes]/[category]/[product]/ A.single-productes.php 将显示类别产品/[productes]/[category]/[subcategory]/[product]/ A.sin