我是WP主题开发的新手,我有一个问题。
我已经通过CPT UI插件创建了一个自定义帖子类型“公文包”。现在,我想创建一个自定义查询来显示post\\u类型为“portfolio”的所有帖子。这是我的密码
<div class="row">
<?php
$args = array (
\'post-type\' => \'portfolio\'
);
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="col-sm-3 portfolio-piece">
<h3><?php the_title(); ?></h3>
</div>
<?php endwhile; endif; ?>
</div>
不知怎的,它向我展示了唯一一个帖子“你好,世界!”post\\u类型为“post”。顺便说一下,我甚至没有这个帖子。
非常感谢。