gpt4 book ai didi

php - 输出 WordPress 列表类别,其中按父类别名称计数

转载 作者:行者123 更新时间:2023-11-29 18:35:13 25 4
gpt4 key购买 nike

我尝试通过在代码中的某处输入父类别来输出每个类别名称末尾带有计数的 WordPress 类别。

下面的代码结果显示类别,最后显示帖子数,但它显示所有类别。

例如:我有一个父类别名称“alpha”,其子类别名称为类别 A、类别 B、类别 C、类别 D

我想要输出显示:

-A 类 (5)

-B 类 (2)

-C 类 (6)

-D 类 (7)

<?php
$variable = wp_list_categories( array(
'show_count' => true,
'orderby' => 'name',
'style' => 'none'
) );
echo $variable;
?>

最佳答案

显示当前类别的子类别以及帖子总数

<?php
$category_object = get_queried_object();
$current_category_taxonomy = $category_object->taxonomy;
$current_category_term_id = $category_object->term_id;
$current_category_name = $category_object->name;

$args = array(
'child_of' => $current_category_term_id,
'current_category' => $current_category_term_id,
'depth' => 0,
'echo' => 1,
'exclude' => '',
'exclude_tree' => '',
'feed' => '',
'feed_image' => '',
'feed_type' => '',
'hide_empty' => 0,
'hide_title_if_empty' => false,
'hierarchical' => true,
'order' => 'ASC',
'orderby' => 'name',
'separator' => '',
'show_count' => 1,
'show_option_all' => '',
'show_option_none' => __( 'No categories' ),
'style' => 'list',
'taxonomy' => 'category',
'title_li' => __( $current_category_name ),
'use_desc_for_title' => 0,
);
wp_list_categories($args);
?>

关于php - 输出 WordPress 列表类别,其中按父类别名称计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45369484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com