Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
<?php /*
Plugin Name: Similar Posts in Tarski
Plugin URI: http://tarskitheme.com/
Description: Displays similar posts in Tarski
Author: Ben Eastaugh
Version: 1.0
Author URI: http://extralogical.net/
*/
function tarski_output_similarposts() {
if(is_single()) {
echo "<ul>\n";
similar_posts();
echo '</ul>'."\n";
}
}
if(function_exists('similar_posts')) {
add_action('th_postend','tarski_output_similarposts');
}
?>
Nope, just install the plugin. As long as you also have the Similar Posts plugin (that’s what the function_exists(‘similar_posts’) call is for) it should work automatically. Let me know if you have any problems.
If you really want to know the technical details, have a read through this article.
1 to 4 of 4