您不需要创建分类页面。要在其中显示已添加到您创建的自定义分类中的帖子的页面应使用如下格式https://codex.wordpress.org/Class_Reference/WP_Query
读那一页。下面是一些代码,我在其中获得了自定义分类法中的所有帖子。这是Wordpress上我的插件L7管理帮助视频。组织。对此示例进行了轻微修改。
$args = array(
\'post_type\' => \'post\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'your-custom-taxonomy-slug\',
\'field\' => \'slug\',
\'terms\' => \'your-term\',
),
),
\'post_status\' => \'publish\',
\'no_found_rows\' => true,
);
此参数数组应按如下方式放入WP查询函数中:
$my_query = new WP_Query( $args );
然后您可以这样循环遍历结果:
if ( $my_query->have_posts() ) {
while ( $my_query->have_posts() ) : $my_query->the_post();
// Echo all the stuff from a post here
endwhile;
}
这是一个非常基本的示例,但您应该阅读法典:
https://codex.wordpress.org/Class_Reference/WP_Queryhttps://codex.wordpress.org/Taxonomieshttps://codex.wordpress.org/Function_Reference/register_taxonomy