归档.php上的标题显示不正确

时间:2021-09-26 作者:perez

我第一次做了一个基本的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!

1 个回复
SO网友:Maulik Paddharia

您忘记添加get\\u header(),请尝试下面的代码。

<?php get_header(); ?>
<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();?>

相关推荐

如何根据评论元字段对“EDIT-Comments.php”表中的评论进行排序?

目标在;编辑注释。php“;单击自定义列的标题后,基于注释元字段的表。上下文为了简洁起见,我们假设在发布评论时,一个名为;“红心”;指定给它,以便所有注释都具有从0到10的正整数字段。的bold 下面提到的步骤,前三个步骤是针对上下文和预期工作给出的,问题是在第四个步骤上。1. Creating the columnadd_filter( \'manage_edit-comments_columns\', \'hearts_add_comments_column\' ); function hea