我第一次做了一个基本的wordpress主题,我终于把所有的东西都做好了。标题在每个页面上都显示得非常好,除了归档页面(博客帖子的存放位置)。我已经附上了下面的代码,有人知道它可能会出错的原因吗?
主要是标题图像根本没有出现;导航很好,一切正常。因为某种原因,没有图像。它也不会出现在测试帖子上。
档案文件php
<div class="container">
<h1><?php single_cat_title();?></h1>
<?php if (have_posts()) : while(have_posts()) : the_post();?>
<div class="card mb-4">
<div class="card-body">
<?php if (has_post_thumbnail()):?>
<img src="<?php the_post_thumbnail_url(\'smallest\');?>" class="img-fluid">
<?php endif;?>
<h3><?php the_title();?></h3>
<?php the_excerpt();?>
<a href="<?php the_permalink();?>" class="btn btn-success">Read more</a>
</div>
</div>
<?php endwhile; endif;?>
</div>
<?php get_footer();?> ```
Is there any other code that would help you all help me?
Thanks a ton in advance!