我试图显示每个自定义分类术语中的帖子数量。我只需要显示在我的任期内是否有2、3、10等帖子。这是我的密码。正在寻找一种方法将其包含在其中,并且仍然能够单独设置样式。
<?php
$libargs=array(
\'hide_empty\' => 0,
\'parent\' => 0,
\'taxonomy\' => \'industrygroups\');
$libcats=get_categories($libargs);
foreach($libcats as $lc){
echo \'<div class="col-lg-3">\';
$termlink = get_term_link( $lc->slug, \'industrygroups\' );
?>
<p class="text-center"> <a href="<?php echo $termlink; ?>">
<img class="img-responsive img-thumbnail" src="<?php the_field(\'taximage\', \'industrygroups_\'.$lc->term_id); ?>" />
<br />
<?php echo $lc->name; ?></a></p>
<?php the_field(\'basictext\', \'industrygroups_\'.$lc->term_id); ?>
<?php echo \'</div>\'; }?>