I’m talking about the Auto Tagging feature.
In the option page, there is an item “Auto Term Posts” and it says “This feature allow to add automatically terms on a post by proceeding to a search into content.”
And there is Auto Tags setup page in the Tools section. If it’s activated, then Simple Tags add tags automatically when a post publishes.
This feature is not functioning with USP.
Thanks Michael!
Here is my code.
It’s not beautiful, but worked fine.
<?php
$tags = get_the_tags();
if (is_array($tags)) {
foreach ($tags as $tag) {
if($tag->count > 3) { //the threshold number to show
$start = 'Tags: ';
$link = get_tag_link( $tag->term_id );
$string .= '<a href="' . $link . '">' . $tag->name . '(' . $tag->count . ')' . '</a>' . ', ';
}
}
echo rtrim($start . $string, ', ');
}
?>