Hello
I got this in a file:
<div class="tabbertab">
<h2>Arkiv</h2>
-
<?php wp_get_archives('type=monthly'); ?>
<div style="clear:both;"></div>
</div>
<?php if (function_exists('get_most_rated')): ?>
<div class="tabbertab">
<h2>Flest Röster</h2>
-
<?php get_most_rated('post', 10); ?>
<div style="clear:both;"></div>
</div>
<?php endif; ?>
But the "most rated" function doesn't work. Anyone know why?
Also if I want to show 10 most visited posts what code would then work?
Thanks for any help.