hocam bu kodu kategoriye göre nasıl yaparım acaba ? Ana Sayfada listeliyecemde.
En çok oylanan yazıları listelemek için
<?php if (function_exists('get_highest_rated')): ?>
<ul>
<?php get_highest_rated(); ?>
</ul>
<?php endif; ?> 11-04-2009 ve 04-05-2014
Bahsettiğiniz "wp postratings" eklentisi ise;
http://wordpress.org/plugins/wp-postratings/faq/ <?php if (function_exists('get_most_rated_category')): ?>
<ul>
<?php get_most_rated_category(CATEGORY_ID); ?>
</ul>
<?php endif; ?>