You can hack the template by modifying the GetTopRated
method within the main plugin file – rating-widget.php.
That’s the current template:
$html .= '<li class="rw-wp-ui-top-rated-list-item">
<div>
<b class="rw-wp-ui-top-rated-list-count">' . $count . '</b>
<img class="rw-wp-ui-top-rated-list-item-thumbnail" src="' . $thumbnail . '" alt="" />
<div class="rw-wp-ui-top-rated-list-item-data">
<div>
<a class="rw-wp-ui-top-rated-list-item-title" href="' . $permalink . '" title="' . $title . '">' . $short . '</a>
<div class="rw-ui-container rw-class-' . $rclass . ' rw-urid-' . $urid . '"></div>
</div>
<p class="rw-wp-ui-top-rated-list-item-excerpt">' . $excerpt . '</p>
</div>
</div>
</li>';