I have this code wich I use in Wordpress for listing the tags and the number of times they've been used. Here is the code
<?php
$tags = get_tags( array('orderby' => 'count', 'order' => 'DESC') );
foreach ( (array) $tags as $tag ) { ?>
<li class="list-group-item">
<span class="badge"><?php echo $tag->count; ?></span>
<?php echo $tag->name; ?>
</li>
<?php }
?>
The result is the following:
http://s14.postimg.org/z5qghdes1/result.png
So I want to delete the tag 'Animals' from the list. I've looking in other questions but I could not resolve my problem. Thanks for your answer!