在您的功能中。php,您可以筛选the_category_list
, 这是一个帖子的类别数组。
function wpse_the_category_list( $categories, $post_id ) {
return array_slice( $categories, 0, 2, true );
}
add_filter( \'the_category_list\', \'wpse_the_category_list\', 10, 2 );
然后使用以下内容显示模板文件中的类别:
the_category();