18 lines
756 B
PHP
18 lines
756 B
PHP
|
<?php //display the tag cloud ?>
|
||
|
<?php //is_subcategory check the functions and library ?>
|
||
|
<?php if ((is_category('peephole') || is_subcategory('peephole') || is_tag()) && !is_single() ) { ?>
|
||
|
<aside class="bfr_tags bfr_category_tags">
|
||
|
<h6 class="bfr_tag_description">
|
||
|
You are viewing <span class="bfr_tag_active"><?php single_cat_title(); ?></span>. Choose to filter content
|
||
|
</h6>
|
||
|
<div class="bfr_all_tags bfr_toogled_tags">
|
||
|
<?php wp_tag_cloud( 'unit=rem&smallest=0.8&largest=0.8&number=0&orderby=name' ); ?>
|
||
|
</div>
|
||
|
</aside>
|
||
|
<?php } ?>
|
||
|
<?php if ( is_single() ) { ?>
|
||
|
<aside class="bfr_tags bfr_post_tags">
|
||
|
<?php the_tags('<ul class=""><li class="bfr_tag_active">', '</li><li class="bfr_tag_active">','</li></ul>'); ?>
|
||
|
</aside>
|
||
|
<?php } ?>
|