我想显示我所有的帖子,但是archive.php页面没有显示任何帖子,我有一个名为carundefined的自定义帖子类型。定制型汽车展示柱的内容。
archive.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:
发布于 2021-10-01 08:00:29
您是否在函数中声明了此参数'has_archive' => true,其中创建了自定义post类型,如果没有,则先执行此操作,然后检查,希望它对您有用,
https://wordpress.stackexchange.com/questions/396037
复制相似问题