I have gotten the plug in to work but it will only show the most popular list and not any other.
I am trying to make a top 100 DJ list with my blog. I want to uses the Popularity to create a page the page dynamically.
I can get the it to show the top 100 post but for some reason it is not showing by categories or by year, etc like you have on the admin side. I would really just like to have the whole dashboard page open to the public other then having to login. any suggestions on that or just getting the categories to work on the public side.
i have listed the code that I am using below. but like I said only the most popular page code is working all the others doing work or show up!
any help would be greatly appreciated!
I am currently using wordpress 2.6.1 and the lastet version of popularity from your site.
<?php if (( (is_home()) or (is_single()) or (is_page()) or (is_search() or (is_404()) or ($notfound == '1'))) && (function_exists('akpc_most_popular'))) { ?>
<h2>Popular Posts</h2>
<?php akpc_most_popular(100); ?>
<?php } ?>
<?php if ((is_archive() && is_month()) && (function_exists('akpc_most_popular_in_month'))) { ?>
<h2>Most Popular Posts of <?php the_time('F Y'); ?></h2>
<?php akpc_most_popular_in_month(); ?>
<?php } ?>
<?php if ((is_category()) && (function_exists('akpc_most_popular_in_cat'))) { ?>
<h2>Most Popular Posts in '<?php single_cat_title(); ?>'</h2>
<?php akpc_most_popular_in_cat(); ?>
<?php } ?>