| 564 | | if ( ! is_null( $tax->labels->popular_items ) ) { |
| 565 | | if ( current_user_can( $tax->cap->edit_terms ) ) { |
| 566 | | $tag_cloud = wp_tag_cloud( array( 'taxonomy' => $taxonomy, 'post_type' => $post_type, 'echo' => false, 'link' => 'edit' ) ); |
| 567 | | } else { |
| 568 | | $tag_cloud = wp_tag_cloud( array( 'taxonomy' => $taxonomy, 'echo' => false ) ); |
| 569 | | } |
| 570 | | |
| 571 | | if ( $tag_cloud ) : |
| 572 | | ?> |
| 573 | | <div class="tagcloud"> |
| 574 | | <h2><?php echo $tax->labels->popular_items; ?></h2> |
| 575 | | <?php echo $tag_cloud; unset( $tag_cloud ); ?> |