我想显示除存档外的所有帖子。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]: