I’ve found this, it’s more likely what I’m trying to do. But I can’t add PHP code to a page. Is there a better solution than installing the
Exec-PHP plugin?
<?php
//assuming your tag id is 44
$tags = get_tags('include=44');
if ($tags) {
foreach ($tags as $tag) {
echo '<p>Tag: ' . $tag->name . '(' . $tag->count . ')</p>';
}
}
?>