2017-07-28 14 views
0

私は各カテゴリの名前の最後にcountを持つワードプレスカテゴリをどこかのコードに入力して出力しようとしています。出力wordpressリストのカテゴリ数を名前で親カテゴリ

下のコードの結果は、最後に投稿数を含むカテゴリを表示しますが、すべてのカテゴリを表示します。

例:私は親カテゴリ名 "アルファ" を持っている、とその子カテゴリ名は、カテゴリーA、カテゴリーB、カテゴリーC、カテゴリーD

私は出力表示したい:

- 部門を(5)

- 部門B(2)

- 部門C(6)

- 部門D(7)

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

と表示し、現在のカテゴリ賢い子カテゴリあなたは、メインの親カテゴリの右側の総子カテゴリ数の表示親カテゴリを言うことを意味ですか? –

答えて

0

私は答えを見つけました、私はちょうど配列の "child_of"を使用し、値の親カテゴリーIDを入力します。

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

総投稿数

<?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); 
?> 
関連する問題