Is anyone aware of a plug-in out there that would work with the gazette theme where it would identify 5-7 popular tags and place those under the category bar? Or something similar where even if the administrator had to select the tags, they would still be up there.
I'm not aware of a plugin that will do that automatically, but I can think of a way you might do it manually. On our home page, we have three slots for featured forum conversations. To set those featured slots on the backend, it looks a bit like this:
I think one thing that you could do is build a plugin like this where you pre-define those 5 to 7 slots and then determine which tags they display with plain-text fields or drop-downs with your entire taxonomy. Changing what displays on the front end would just be a matter of updating the tags on the backend and then hitting "Save". Is there functionality you'd want beyond that? Do you have a mockup for what you'd want it to look like?
I think I built the backend feature in the theme, but it'd be pretty easy to translate to a plugin. I see exactly what you're thinking for the Hot Topics; it'd be pretty easy to do.
You can download the code I've put together to get you started. That will give you an admin screen to change the settings on the backend. When you update the settings, they're stored in WordPress' options table. To then get that information to display on the front end, you need to pull the settings from the options table and display the variables. It looks something like this:
<?php $fp_settings = get_option('copress_fp_settings'); // Get the front page discussion items from the admin ?>
What do you mean by most popular tags? The tag with the most posts won't necessarily be the most popular, but if that's what you're looking for, this will get you the seven most popular tags and return a list:
This is great! We were just thinking about doing this. The LA times does it well: http://www.latimes.com/. We were thinking of having the plugin take the most popular tags that are not more than 10 days old (it would filter out tags without a post written within the last 10 days).
IMO, tags really aren't that useful unless they are used with a feature like this!
Since we made our featured tags live today, I thought of some other features for this bar.
You can really make it whatever you want to make it by tricking the system.
I have already thought about changing "Hot on the Hill" to "Breaking News" and then deleting two of the tags and creating a headline that also works as a URL.
Seems like you can be really versatile with this feature the more I think about it.
I just wanted to add to this for anyone else interested in doing something like what we did that we have already started to see results. Those links have been clicked on close to 300 times since Sunday.
We don't have a scientific way of determining what's up there, we just kind of choose. Like I said though, it's been very effective.