存档帖子未显示所有帖子

时间:2021-09-23 作者:SEKIRO

我想显示除存档外的所有帖子。php页面不显示任何帖子,我有一个自定义帖子类型,名为car[![在此处输入图像描述][1]][1]。自定义类型汽车显示帖子的内容。

档案文件php

        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <div class="dealoop">
          <!-- Thumbnail -->
          <div class="loth">
            <?php the_post_thumbnail(); ?>  
          </div>
          <!-- Thumbnail -->
          <!-- Meta + Excerpt -->
          <div class="mexc">
            <span class="pub"><strong>Tanggal</strong> : <?php the_time(\'j M Y\'); ?> | <strong>Kategori</strong> : <?php echo get_the_term_list($post->ID, \'category\', \' \', \' , \'); ?></span>
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
            <div class="dealexc">
             <?php echo wp_trim_words( get_the_content(), 40, \'...\' ); ?>
            </div>
          </div>
          <!-- Meta + Excerpt -->
        </div>
        <?php endwhile; ?>
        <?php endif; ?>
        <!-- Archive -->
[1]:

1 个回复
SO网友:ZealousWeb

是否声明了此参数\'has_archive\' => true 在您创建此自定义帖子类型的函数中,如果没有,请先执行此操作,然后检查,希望它对您有用,

相关推荐