No jaz sem si downloadal "popularity-contest" plugin, vendar imam težave pri namestitvi ga v sidebar. V sidebaru se mi izpiše widget MOST POPULAR POST vendar je prazno,v codo moram pomoje dodat še kakšno besedo, vendar sem noob v tem. Pod posti pa popular % delujejo. Tu piše malo o pomoči:
akpcthepopularity()
Put this tag within The Loop to show the popularity of the post being shown. The popularity is shown as a percentage of your most popular post. For example, if the popularity total for Post #1 is 500 and your popular post has a total of 1000, this tag will show a value of 50%.
Example:
* <?php akpc_the_popularity(); ?>
akpcmostpopular($limit = 10, $before = <li>, $after = </li>)
Put this tag outside of The Loop (perhaps in your sidebar?) to show a list (like the archives/categories/links list) of your most popular posts. All arguments are optional, the defaults are included in the example above.
Examples:
* <?php akpc_most_popular(); ?>
* <li><h2>Most Popular Posts</h2>
<ul>
<?php akpc_most_popular(); ?>
</ul>
</li>
akpcmostpopularincat($limit = 10, $before = <li>, $after = </li>, $cat_ID = current category)
Put this tag outside of The Loop (perhaps in your sidebar?) to show a list of the most popular posts in a specific category. You may want to use this on category archive pages. All arguments are
Examples:
* <?php akpc_most_popular_in_cat(1); ?>
* <php if (is_category()) { akpc_most_popular_in_cat(); } ?>
* <?php if (is_category()) { ?>
<li><h2>Most Popular in '<?php single_cat_title(); ?>'</h2>
<ul>
<?php akpc_most_popular_in_cat(); ?>
</ul>
</li>
<?php } ?>
akpcmostpopularinmonth($limit, $before, $after, $m = YYYYMM)
Put this tag outside of The Loop (perhaps in your sidebar?) to show a list of the most popular posts in a specific month. You may want to use this on monthly archive pages.
Examples:
* <?php akpc_most_popular_in_month('200504'); ?>
* <php if (is_archive() && is_month()) { akpc_most_popular_in_month(); } ?>
* <?php if (is_archive() && is_month()) { ?>
<li><h2>Most Popular in <?php the_time('F, Y'); ?></h2>
<ul>
<?php akpc_most_popular_in_month(); ?>
</ul>
</li>
<?php } ?>
Če kdo ma več pojma o tem bi ga prosu da bi izpiše pravo kodo da bo mi to delalo :/ hvala