I have installed sitewide tags plugin on my MU, which currently has several blogs, but couldn't get the compendum of the blog entries to be visible anywhere. I tried to go with a defaults first, creating a tags blog. I simply showed me its own default first entry. I then tried to point it to the main page of my site, adding a posts loop to it like so:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
Still nothing. When I check the database I can see my wp_5, which is a global blog, but it only has default post and comment in it. I reset the privacy to make it visible - nothing.
What else I might have missed? Also, in order to start afresh, should I just drop the db tables that got created for my plugin? Or is tehre a better/cleaner way to do it?
Thanks!
Luka