Problem
WP KeywordLink is a great WordPress Plugin that can also generate related posts at the end of a post. In auto display mode, it can display the strength of the similarity, but failed to display as the format we set.
Reason
In auto display mode, the variable of format is receiving a non-existing parameter in POST data scope. So it always use the default format “value” to display the strength.
Solution
In plugin file wp_similarity.php, locate the line as below
$options['auto_format'] = $_POST['auto_format'];
Change to
$options['auto_format'] = $_POST['format'];
Done. The strength format will be effective for auto display mode.