我有以下查询以及一个名为"Questions":
<ul>
<?php
$args = array(
\'post_type\' => \'questions\',
\'posts_per_page\' => 50
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</li>
<?php
endwhile; ?>
</ul>
我还创建了一个名为
"Type" 并将其链接到此帖子类型,以便对内容进行分类(例如,问题类型)。此查询列出了所有问题标题,但我想找到一种方法列出此问题所属的类别,使其看起来像:
如何配置电子邮件客户端?在“技术支持”中,如何在“Wordpress支持”中更改主题的背景图像,我尝试了使用,但没有得到任何结果。
有什么想法吗?