最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to add a post counter to the list of custom taxonomy terms?

programmeradmin1浏览0评论

I am using the below code to display the list (radio buttons) of terms that are currently used by existing custom post type posts:

$args = array( 
  'taxonomy' => 'typ',
  'post_type' => 'instytucje',
);
$terms = get_terms('typ', $args);
$count = count($terms); $i=0;
if ($count > 0) {
    $cape_list = '';
    foreach ($terms as $term) { 
        $i++;
        $term_list .= '<input type="radio" name="typ" value="' . $term->slug . '"> ' . $term->name . '';
        if ($count != $i) $term_list .= '<br>'; else $term_list .= '<br>';
    }
    echo '<form name="filterby" action="" method="GET">';
    echo $term_list;
    echo '<button OnClick="document.filterby.submit();">Szukaj</button>';
}

The list is used as a form to filter posts by terms.

My question is - how can I add a counter showing the number of posts next to each term on the list?

[radio button] [term name] [number of posts with the term]

This is the site I am working on:
/

I am using the below code to display the list (radio buttons) of terms that are currently used by existing custom post type posts:

$args = array( 
  'taxonomy' => 'typ',
  'post_type' => 'instytucje',
);
$terms = get_terms('typ', $args);
$count = count($terms); $i=0;
if ($count > 0) {
    $cape_list = '';
    foreach ($terms as $term) { 
        $i++;
        $term_list .= '<input type="radio" name="typ" value="' . $term->slug . '"> ' . $term->name . '';
        if ($count != $i) $term_list .= '<br>'; else $term_list .= '<br>';
    }
    echo '<form name="filterby" action="" method="GET">';
    echo $term_list;
    echo '<button OnClick="document.filterby.submit();">Szukaj</button>';
}

The list is used as a form to filter posts by terms.

My question is - how can I add a counter showing the number of posts next to each term on the list?

[radio button] [term name] [number of posts with the term]

This is the site I am working on:
http://www.marketingpolityczny/baza-wiedzy/instytucje/

Share Improve this question edited May 7, 2013 at 23:51 s_ha_dum 65.6k13 gold badges84 silver badges174 bronze badges asked May 7, 2013 at 22:20 kanabikanabi 1
Add a comment  | 

1 Answer 1

Reset to default 0

Replace the 11th line with the code below (untested):

$term_list .= '<input type="radio" name="typ" value="' . $term->slug . '"> ' . $term->name . ' Number of Posts:'. $term->count;

It appears that get_terms has a post count return value.

发布评论

评论列表(0)

  1. 暂无评论