我为我的自定义帖子类型创建了一个称为“公文包”的特殊模板,其中包括自定义帖子类型“公文包”的自定义WP\\U查询。。。这些帖子似乎工作正常,但没有显示自定义帖子类型项目的单页列表链接,而是将我重定向到“example.com/work”,在那里我列出了所有costum帖子项目。
有什么解决办法吗?我错过什么了吗?
以下是我的完整代码:
<div class="jumbotron">
<?php
$args = array(
\'post_type\' => \'portfolio\',
\'posts_per_page\' => 3
);
$portfolio = new WP_Query($args);
while($portfolio->have_posts()) : $portfolio->the_post();
?>
<?php get_template_part(\'content\', get_post_format());?>
<?php
endwhile;
?>
</div>
<?php wp_reset_postdata(); ?>
对于列出每个项目的内容页:
<div class="card p-3"> <?php if(has_post_thumbnail()){
the_post_thumbnail(array(200,200));
}
?><a href="<?php esc_url(get_permalink()); ?>"><?php the_title() ?></a>
<blockquote class="blockquote mb-0 card-body">
<?php the_content() ?>
<small><?php the_category() === null ? : the_category(); ?></small>
</blockquote>