开发者 |
boonebgorges
cuny-academic-commons |
---|---|
更新时间 | 2009年9月19日 00:31 |
PHP版本: | WPMU 2.8 及以上 |
WordPress版本: | WPMU 2.8.4a |
<p class="tagcloud-link hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php printf( __('Choose from the most used tags in %s'), $box['title'] ); ?></a></p>
First, if you'd like to change this line's text to more clearly distinguish between the current blog's tags and the sitewide tags, you might consider replacing that line with the following:
<p class="tagcloud-link hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php printf( __('Choose from the most used tags on this blog'), $box['title'] ); ?></a></p>
After that line, add the following markup, which creates a link for your sitewide tags. You'll want to change my link text ("...all Commons blogs") to reflect your own site:
<p class="tagcloud2-link hide-if-no-js"><a href="#titlediv" class="tagcloud2-link" id="link2-<?php echo $tax_name; ?>"><?php printf( __('Choose from the most used tags in all Commons blogs'), $box['title'] ); ?></a></p>
*/Mostly because I am terrible at plugin programming. Suck it up. Remember, though, that these hacks will have to be reimplemented if you upgrade to a new version of WPMU.