Quote:
Originally Posted by Si
Anyone know if this is possible/how to do it?
|
I don't use any trade scripts on my WP installs, so this is a random, five-beers-later response...
You may have to modify your theme's function.php file to widgetize your toplost. I'd try tossing something like this into my sidebar.
Off the top of my head:
Code:
<div class="mysidebarclassgoeshere">
<h3><?php _e('Toplist'); ?></h3>
<ul>
<?php include "/pathto/mytoplist.php"; ?>
</ul>
</div>
You'll need to set up your toplist template to have <li></li> instead of <td></td> for this to work, but I'm just throwing it out there. I didn't try it.
Bump for you, but I feel like I'm missing something...