WordPress Heat Map plugin

The WordPress Heat Map plugin provides you with three new template tags for displaying a heat map (aka weighted list) of your categories, tags and monthly archives. Activity in any given category, tag or month can be indicated by varying font sizes, color intensities or both. This plugin was largely inspired by Matt Kingston’s Weighted Categories plugin.

Heat map of monthly archives (with custom styling)

This plugin has only been tested with WordPress 2.6, however it will probably work with WordPress 2.3 or newer.

Download & Installation

  1. Download the WordPress Heat Map plugin: wp-heatmap_2_6.txt
  2. Rename it to “wp-heatmap.php”
  3. Upload the renamed file to your wordpress plugins directory
  4. Activate the plugin “WordPress Heat Map” in your plugins admin panel

Usage

This plugin provides three new template tags which are similar in use to the template tags provided by WordPress itself. The three new template tags are:

  • heatmap_categories(smallest, largest, ‘unit’, ‘cold’, ‘hot’, ‘before’, ‘after’, ‘exclude’, limit)
  • heatmap_tags(smallest, largest, ‘unit’, ‘cold’, ‘hot’, ‘before’, ‘after’, ‘exclude’, limit)
  • heatmap_archives(smallest, largest, ‘unit’, ‘cold’, ‘hot’, ‘before’, ‘after’)

The parameters for these template tags are the following:

  • smallest (integer): the smallest font size to use in the heat map, indicating the lowest activity. Defaults to 10.
  • largest (integer): the largest font size to use in the heat map, indicating the highest activity. Defaults to 36.
  • unit (string): the unit of the font sizes specified before, eg. ‘pt’, ‘px’, ‘em’, ‘%’, &c. Defaults to ‘pt’.
  • cold (string): the color to use in the heat map for indicating the lowest activity, without a leading ‘#’. Only three-digit color values are supported, eg. ‘000′, ‘f00′, &c. Defaults to ‘00f’ (blue).
  • hot (string): the color to use in the heat map for indicating the highest activity, without a leading ‘#’. Only three-digit color values are supported, eg. ‘fff’, ‘00f’, &c. Defaults to ‘f00′ (red).
  • before (string): text to place before the link. Defaults to ”.
  • after (string): text to place after the link. Defaults to ‘ ’.
  • exclude (string): categories or tags to be excluded. Set this to ” if you don’t want to exclude any categories or tags. This must be in the form of an array, eg. ‘1, 2, 3′. Defaults to ”. This parameter is only supported by heatmap_categories() and heatmap_tags().
  • limit (integer): the number of top categories or tags to be displayed. Set this to 0 if you want to display all categories or tags with no limit. Defaults to 0. This parameter is only supported by heatmap_categories() and heatmap_tags.

Example

Here’s an example of how to create a heat map of your top ten most active categories: The first two parameters define minimum and maximum font size, the third parameter defines the font size unit, the fourth parameter defines the color for least active entries to be black, the fifth parameter defines the color for most active entries to be a dark shade of red, the sixth parameter defines that there won’t be any text placed before each individual link, the seventh parameter defines that there are non-breaking spaces after each individual link. The eigth parameter is set to exclude no categories explicitly and the ninth parameter limits the number of displayed categories to the top ten most active categories.

     <?php heatmap_categories(12, 36, 'pt', '000', 'd01', '', '&nbsp;', '', 10); ?>

Here’s another example of how this plugin is used. The following code is placed in a template. The first two parameters define minimum and maximum font size, the third parameter defines the font size unit, the fourth parameter defines the color for least active entries to be black, the fifth parameter defines the color for most active entries to be a dark shade of red, the sixth and seventh parameters are opening and closing list-item tags which will be placed before and after each individual link. The template-tag is enclosed by unordered-list tags directly in the template html.

<ul class='heatmap'>
     <?php heatmap_archives(100, 150, '%', '000', 'd01', '<li>', '</li>'); ?>
</ul>

The following css can be used to style the heatmap and display list-items inline:

#content ul.heatmap {
	margin:0;
	padding:10px 0 30px 0;
}

#content ul.heatmap li {
	margin:0;
	padding:0;
	display:inline;
}

Note

If you want to only use varying font sizes in your heat map, simply set both the ‘cold’ parameter and the ‘hot’ parameter to the same arbitrary value. The color information will then be completely ignored and neither calculated nor included in the output.
If you want to only use varying color hues in your heat map, simply set both the ’smallest’ parameter and the ‘largest’ parameter to the same arbitrary value. The font size information will then be completely ignored and neither calculated nor included in the output.
If you have any problems or suggestions, feel free to contact me via email at christoph [at] engadgeted [dot] net or leave a comment below. Hope you find this useful!

159 Responses »

  1. i tried this with 1.5.1 and received header output errors from this plugin.

    Comment by mike on May. 17th, 2005, at 20:36 #

  2. It seems to work fine with wordpress 1.5.1 on my end, could you please give me a few more details, e.g. what kind of errors, how and where do you use the template tags?

    Comment by christoph on May. 18th, 2005, at 21:05 #

  3. I am having the same problem…

    Warning: Cannot modify header information - headers already sent by (output started at /home/benstraw/public_html/wp/wp-content/plugins/wp-heatmap1_1.php:153) in /home/benstraw/public_html/wp/wp-admin/admin.php on line 6

    I get that error 4 times after activating the plugin.

    I copied the text from your phps file to install it.

    Comment by ben on May. 19th, 2005, at 17:34 #

  4. getting this:

    Warning: Cannot modify header information - headers already sent by (output started at /xx/xx/xx/htdocs/mike/wp-content/plugins/wp-heatmap.php:154) in /xx/xx/xx/htdocs/mike/wp-admin/admin.php on line 10

    Warning: Cannot modify header information - headers already sent by (output started at /xx/xx/xx/htdocs/mike/wp-content/plugins/wp-heatmap.php:154) in /xx/xx/xx/htdocs/mike/wp-admin/admin.php on line 11

    Warning: Cannot modify header information - headers already sent by (output started at /xx/xx/xx/htdocs/mike/wp-content/plugins/wp-heatmap.php:154) in /xx/xx/xx/htdocs/mike/wp-admin/admin.php on line 12

    Warning: Cannot modify header information - headers already sent by (output started at /xx/xx/xx/xx/mike/wp-content/plugins/wp-heatmap.php:154) in /xx/xx/xx/htdocs/mike/wp-admin/admin.php on line 13

    i don’t have any white space in the file. if it’s any help i have pretty much the same problem with mark jaquith’s ‘nice categories’ plugin. i have a few (plugins) installed so maybe there’s a conflict?

    Comment by mike on May. 19th, 2005, at 19:14 #

  5. i tried it on a test site without any plugins and received the same errors (both classic and default themes)

    Comment by mike on May. 19th, 2005, at 19:19 #

  6. Sorry, i’m an idiot. I recently moved servers and the new system apparently sprinkles some automagical syntax highlighting onto phps files, which in theory is nice for readibility, but also makes them utterly undownloadable because you’ll end up with a garbled mess of html instead of the proper php source file.
    I’ve changed the download links (now they’re txt instead of phps), would you be so kind to redownload them and give it another try?
    Many thanks for pointing this out to me and please let me know if any other issues arise.

    Comment by christoph on May. 19th, 2005, at 22:25 #

  7. works!
    thanks!

    Comment by mike on May. 20th, 2005, at 5:30 #

  8. [...] t Map plugin
    by Grant @ 7:40 pm. Filed under What is this

    Well thanx to engadgeted.net » WordPress Heat Map plugin for helping me implement ‘tag clo [...]

    Pingback by iclouds » Blog Archive » engadgeted.net » WordPress Heat Map plugin on May. 27th, 2005, at 11:40 #

  9. Plugins are working fine, but it also display categories in which the posts are in draft mode. Can it be made to exclude posts that are drafts or private?

    Comment by ty on May. 29th, 2005, at 12:15 #

  10. [...] add my own to my site. Once I started looking around for source code (I eventually found a WordPress plug-in!) I was surprised how many sites are already using them successfu [...]

    Pingback by COLLCOLL » Blog Archive » HotLists A.K.A. Weighted Lists on Jun. 12th, 2005, at 9:25 #

  11. [...] [...]

    Pingback by CeprixConception » on Jul. 4th, 2005, at 4:38 #

  12. Hello,

    I’ve tried v 1.1 and get weirdness. The list of categories (or archvies) shows up as a plain text list above the heatmap.

    My category page: http://www.jonwatson.ca/blog/?page_id=292
    My archive page: http://www.jonwatson.ca/blog/?page_id=293

    Any idea what’s going on there?

    Thanks!

    Comment by Jon on Jul. 22nd, 2005, at 17:30 #

  13. That problem looks faintly familiar, but i can’t remember what causes it… i’ll try to look into it, but in the meantime it would be really helpful if you could send me the template file you’re using the heat map template tags in.

    Comment by christoph on Jul. 23rd, 2005, at 4:49 #

  14. Sure, thanks for looking at it.

    Where do you want me to send it?

    Comment by Jon on Jul. 23rd, 2005, at 6:11 #

  15. Oh right, christoph [at] engadgeted.net is my address.

    Comment by christoph on Jul. 23rd, 2005, at 18:18 #

  16. Coming atcha!

    Comment by Jon on Jul. 23rd, 2005, at 22:02 #

  17. Hallo
    Schön, dass du die 1.2 Version immer noch anbietest! ich glaube nämlich, mein ziemlich übel aufgebohrtes System lässt sich nicht mehr wirklich verlustfei auf 1.5 updaten ;-)

    Habs hochgeladen, copy and paste den code eingefügt, getestet. Fertig! :-) Selten ein Plugin so leicht installiert. http://www.lahr.net/beta/media.php

    Danke!!

    Comment by Martin Wehrle on Jul. 24th, 2005, at 10:53 #

  18. I am very excited about trying this plugin. Unfortunately, your site is blocked in China, so I have to jump through all kinds of hoops to get the file. The proxies I use enable me to view this page, but not to download (or view) the text file which composes the actual plugin. Weird.

    Comment by John on Aug. 12th, 2005, at 12:20 #

  19. [...] Anyhow, Cat2Tag has been working nicely; the only downside is that a regular list of categories would be a bit on the lengthy side. So, I’ve made use of Christoph Wimmer’s Heat Map Plugin for WordPress which you can see in the sidebar. The effect, also called a tag cloud, lists the categories sequentially but assigns font sizes based on the number of posts in each category. [...]

    Pingback by Hand Coding » Blog Archive » Found a Tag Cloud Plugin for WordPress on Aug. 14th, 2005, at 23:34 #

  20. Does this moderation stuff help with spam at all?

    Comment by Bobby D on Aug. 25th, 2005, at 1:42 #

  21. It works sufficiently. I’m using the auto moderate comments plugin which puts comments on older or inactive posts in moderation but allows uninterrupted commenting on newer posts and posts with active comment threads. Sometimes comment spam slips through on older topics which are open for discussion but i’ve found that comment spammers hardly ever target really new posts, stuff that’s less than a week old. I don’t get that much spam in the first place and manually moderating comments and monitoring active comment threads doesn’t take too much time.

    Comment by christoph on Aug. 26th, 2005, at 11:05 #

  22. [...] On top of that, I also found the WordPress Heat Map plugin, which provides a tag cloud for a set of categories in a WordPress blog. I’m using it in my “Archives” page now. [...]

    Pingback by D’Arcy Norman Dot Net » Blog Archive » Folksonomies in WordPress on Sep. 13th, 2005, at 20:35 #

  23. [...] WordPress Heat Map plugin, which provides a tag cloud for a set of categories in a WordPress blog. [...]

    Pingback by soulsoup » Interesting Wordpress plugins e-learning blog, elearning blog, e-learning design, e-learning strategy, learning experience design on Sep. 14th, 2005, at 5:36 #

  24. Weekend Maintenance

    Over the weekend I think I made some progress toward bringing this site to a point of “completion”. I’m sure it won’t ever be complete in the sense that I’ll always tinker with it now and then, but at least it’s ge…

    Trackback by trailbound.net on Sep. 19th, 2005, at 7:55 #

  25. Hi Christoph,

    You made my wish come true to be able to display more than one heat map/tag cloud/keyword cosmos/weighted list in conjunction with the Ultimate Tag Warrior plugin. I’ve tried several other category weighted lists plugins and they get nasty with my site. The only thing I miss in Heat Map is the option to control how many categories to display (let’s say the top 25 or 50 most frequently used categories). Is it easy for you to put that option in or can you tell me how I can code that? I’m not a coder myself but I am a wizard at ctrl-c and ctrl-v.

    Bye,

    Gerard

    Comment by Gerard on Oct. 5th, 2005, at 9:06 #

  26. Hi Gerard,

    i made a few changes to the plugin to hopefully suit your needs, the modified version is in the mail. I’ll put a new version up here for download as soon as i have some time for testing and updating the docs.

    Comment by christoph on Oct. 5th, 2005, at 13:01 #

  27. [...] I was musing the other day about how my archives page would look much nicer if the category and date based archives were presented as heat maps. This sounded to me like a good idea for a plugin and I was all set to start coding when I thought I’d better check someone hadn’t thought of my revolutionary idea before! A quick google later and I came upon the “WordPress Heat Map plugin” which provides both heat maps for me. A few minutes later and it was integrated within the site and some CSS added to make it look pretty and all was done. Comment on this post [...]

    Pingback by Peter Westwood » Site updates on Oct. 6th, 2005, at 9:48 #

  28. thanks for the great plugin! i extended it by a function to display technorati tags (created with bunny’s technorati plugin) as a heat map. feel free to get it here.

    Comment by christian on Oct. 19th, 2005, at 20:30 #

  29. Bunny heat

    A few days ago I found the interesting WordPress Heat Map plugin. It lets you create so called heat maps, like those “occurrence-dependent weighted tag clusters” on flickr or Technorati, of your categories and archives. I think those maps …

    Trackback by cs journal on Oct. 19th, 2005, at 20:31 #

  30. Love this plugin, thanks!

    Comment by Mush on Nov. 2nd, 2005, at 23:31 #

  31. [...] I also found a slightly different plugin at endadgeted.net, which generates a heat map (a tag cloud is a heat map on tags), on the categories and monthly archives. By the way, I don´t think there´s a real difference in between categories and tags at this point: I prefer to have few categories and many tags mainly because of the way wordpress and UTW handle them (also because I like to use the categories for the core topics and the tags for finer detail), but maybe this latter approach could be more practical in same cases. (UTW gives the option to convert categories to tags, but it warns that you should update the database first, just in case). [...]

    Pingback by nan (not a nerd) » Blog Archive » It´s raining tags, alleluia! on Nov. 20th, 2005, at 5:24 #

  32. [...] 找到了一个可以用于WP的Tag Could插件。安装很简单,只需要按照说明中的步骤顺序进行就可以了。 出来的效果很漂亮! 越来越感到有一个自己的Blog Host的自由了。Wordpress.com提供的服务虽然也很不错,但是始终没有开放模版编辑的功能,于是各式各样的插件和花哨模版没有办法安装。 [...]

    Pingback by Tag Cloud on Wordpress at Ke ke on Nov. 22nd, 2005, at 9:58 #

  33. [...] [...]

    Pingback by Shadows » Blog Archive » Looking At Archives on Nov. 24th, 2005, at 19:57 #

  34. [...] Developers: you can futz with a Java version of the original proof of concept courtesy the Univ. of Maryland and the inventor, Prof. Ben Schneiderman. Bloggers, there’s a heatmap plugin for WordPress now. [...]

    Pingback by The New Market Machines » Blog Archive » Map of the Market on Dec. 5th, 2005, at 19:18 #

  35. [...] Heute habe ich endlich ein paar Dinge an dieser Seite geändert, die ich schon lange geplant hatte. Zu den kleineren gehört das Einfügen eines Favicons und einer Archiv-Seite, auf der die Monate und Kategorien als Heat Map dargestellt werden (ähnlich der Cloud-Darstellung, die man von del.icio.us kennt). [...]

    Pingback by Carsten Keßler » Blog Archive » Ein paar Änderungen on Dec. 12th, 2005, at 15:53 #

  36. [...] The WordPress Heat Map plugin provides you with two new template tags for displaying a heat map (aka weighted list) of your categories and your monthly archives. Activity in any given category or month can be indicated by varying font sizes, color intensities or both. [...]

    Pingback by lowres.org » Blog Archive » Wordpress: Weighted Lists plugin on Dec. 14th, 2005, at 11:02 #

  37. [...] Ive always liked tag clouds, theyre easy to use and look pretty. Mine looks a little empty and one sided at the minute, but hopefully ill add a lot more tags (seeing as tho ill be tagging posts now, rather then trying to stick them into specific catagories) and it will even out. I used the Wordpress Heatmap Plugin to generate it, easy to install (with a few strange hiccups) and works pretty well. I sorta wish there was an option to limit the cloud to only popular tags tho, but hey, cant have everything [...]

    Pingback by DarkBeforeDawn » Cloudy on Dec. 21st, 2005, at 22:03 #

  38. Is it possible to display two heatmaps? I want to display one heatmap for authors-categories and one for subjects-categories but I can only get one to work. The first one I display works, the second one doesn’t do anything, no matter which one I put first. Maybe by renaming the plugin (so I have two) and changing a bit of code?

    Comment by Gerard on Jan. 5th, 2006, at 21:40 #

  39. And…is it possible to exclude a bunch of categories at once instead of having to number them: say 5-64 instead of 5,6,7,8,9,etc.?

    Comment by Gerard on Jan. 5th, 2006, at 22:24 #

  40. [...] Take the tag cloud in my right sidebar - it lists the categories sequentially and assign varying font sizes based on the number of posts in each category. The more posts, the bigger the font size. I like the visual effect and the usefulness of the function, but for the life of me I can’t remove the linebreak after each category. I want it to do one continued listing of links, not one link for each line. Trying to figure that one out, has taken me just about 2 hours now. Arrgghhh!!!!11 [...]

    Pingback by Kim Rom dot info » Blog Archive » World > me on Jan. 8th, 2006, at 17:55 #

  41. Gerard,

    i haven’t tried displaying more than one heatmap, i’ll look into it. As for excluding categories by a range of numbers, i’m afraid this isn’t possible, you’ll have to specify them individually.

    Comment by christoph on Jan. 8th, 2006, at 20:46 #

  42. does it work with Wordpress 2.0 ?

    Comment by Jad madi on Jan. 12th, 2006, at 10:53 #

  43. I only tested it with a release candidate so far, but i think it should work with wordpress 2.0.

    Comment by christoph on Jan. 12th, 2006, at 16:24 #

  44. [...] And, by using a combination of the Cat2Tag v 2.0 and WordPress Heat Map plugins, I wind up with a better solution anyway. [...]

    Pingback by Dumping “Ultimate Tag Warrior” Plugin at D’Arcy Norman Dot Net on Jan. 16th, 2006, at 6:23 #

  45. hey: trying to get the plug in to work
    Reach the point, up to placing the code in archives and changing the css.
    I have done those things, and I get no change whatsoever on my blog.
    Does it matter where you post the ”
    ‘, ”); ?>

    into your archives page? Because, i have done this and no luck

    And in this case: the heat map would be sorted by date/ month?

    -Rory
    thanks

    Comment by Rory on Jan. 28th, 2006, at 22:25 #

  46. Rory,
    i’m sorry for answering so late…
    It seems the code you posted somehow got mangled. If you follow the instructions above and put the template tag somewhere in your template it should work, just make sure to activate the plugin in your plugins admin panel before.
    If you continue to have problems send me an e-mail to christoph [at] engadgeted.net and i’ll try to help you get it up and running.

    Comment by christoph on Feb. 1st, 2006, at 4:36 #

  47. [...] I’ve redesigned my Blog. This is my second Wordpress theme built from scratch. If I get enough requests I’ll package it up for release. The theme is slightly based on the design from Last.FM. I’m using the WP-Heatmap plugin to handle my Tags and Archives pages. Only parent tags (categories) are displayed within the sidebar. [...]

    Pingback by ChristopherSisk.com » Blog Archive » Blog redisgned on Feb. 5th, 2006, at 0:26 #

  48. I was wondering if it is possible to sort the categories by ‘heat’ (Hot –> Cold) instead of by alphabet? Any suggestions?

    Comment by Thijs on Feb. 7th, 2006, at 16:34 #

  49. To the poster in #45 (Rory) - you can’t paste the code into the page editor within the WordPress Administrator. That’s why you’re getting that weird code:

    ‘, ‘’); ?>

    You have to directly edit some of the files in the theme used by your website. These are generally “sidebar.php”, “archives.php” and the stylesheets for your website.

    Comment by carlos on Feb. 10th, 2006, at 7:08 #

  50. Cristoph,

    I can’t get the categories to display inline. Any ideas? I’ve got the stylesheets defines, the code in place, colors and fonts work fine, but no inline display, just a vertical list.

    Thanks for any help.

    Comment by carlos on Feb. 10th, 2006, at 7:09 #

  51. Ok, solved it by eliminating the “li” code. Works fine now. Thanks to Dan, who posted the solution at: http://www.kimrom.info/2006/01/08/world-me/

    Comment by carlos on Feb. 10th, 2006, at 7:15 #

  52. [...] I also found a slightly different plugin at endadgeted.net, which generates a heat map (a tag cloud is a heat map on tags), on the categories and monthly archives. By the way, I don´t think there´s a real difference in between categories and tags at this point: I prefer to have few categories and many tags mainly because of the way wordpress and UTW handle them (also because I like to use the categories for the core topics and the tags for finer detail), but maybe this latter approach could be more practical in some cases. (UTW gives the option to convert categories to tags, but it warns that you should update the database first, just in case). [...]

    Pingback by nan (not a nerd) » Blog Archive » It´s raining tags, alleluia! on Feb. 11th, 2006, at 1:28 #

  53. [...] There are other plugins available if you’re not using Textpattern, such as the WordPress Heat Map plugin. [...]

    Pingback by Futurosity » Blog Archive » Adding a Tag Cloud to Your Blog on Feb. 12th, 2006, at 20:28 #

  54. [...] [...]

    Pingback by Site Of Abel » Blog Archive » on Feb. 16th, 2006, at 21:52 #

  55. [...] Enter the WordPress Heat Map plugin which does exactly that After a brief search of the Net, I actually found a couple of different alternatives. The other one was the Weighted Categories plugin, which apparently inspired the author of the Heat Map Plugin. However, the Heat Map plugin appeared to be better maintained and supported and so, I went with that :p Incidentally, the author of the Weighted Categories plugin is apparently working on a way to make his plugin work with keywords instead of categories. I would be interested in that if it didn’t create too much overhead and worked without any issues with XMLRPC-based posting. But I doubt it … There is another plugin which supports keywords - the Keywords plugin, and the author is apparently working on tag cloud kind of support. Unfortunately, it works basically the same as UTW (just not as well :p) and so, I don’t see the point to pursuing that one either :p [...]

    Pingback by Solipsistic Meanderings » Tags, categories and changes on Feb. 24th, 2006, at 3:58 #

  56. Hi, excellent plugin Christoph!
    One question: how can I make the title of each category show the title I set on WP options? (as the default category list, when you hover the mouse over it shows the description, instead of “# entries”)

    Thanks!

    Comment by Haplo on Mar. 7th, 2006, at 0:05 #

  57. [...] Better Category Cloud or Heat Map plugin Modifiquei este plugin do Wordpress (Heat Map, categories cloud, nuvem, o que lhe quiserem chamar) para que funcione na versão 2.o do WP e tenha atrás de cada categoria (cujo tamanho e cor indicam quantos artigos lhe pertencem), o link de subscrição de RSS. [...]

    Pingback by Better Category Cloud or Heat Map plugin - vitor azevedo.com on Mar. 10th, 2006, at 18:39 #

  58. I’m trying to use the plugin, but am having a slight problem with displaying the weighted categories. I’ve got two categories up, one with two entries to it, the other with only one entry. So, it should be that the one with more entries would be the largest font, correct? As it is, the one with only one entry is the max font height, while the one with two entries is the min font height. I’m at a loss right now, trying to figure out “why” … was wondering if you might have some insight with others having run into the same problem?

    Here’s the include that’s in my template: “

    Comment by Stew on Mar. 12th, 2006, at 19:14 #

  59. ahh dammit… here’s the code again:

    Comment by Stew on Mar. 12th, 2006, at 19:14 #

  60. ich wollte hier fragen wie ich die underlined hyperlinks entfernen kann.
    bei meiner designidee würde es besser passen wenn die underlines weg wären.

    ich habe nach {textdecoration= underline} gesucht, leider nichts gefunden.
    falls du zeit hast und mir dabei helfen kannst würde ich mich sehr freuen ( ich hoffe das ist auch möglich mit textdecoration= none )

    thx, tom

    Comment by tom on Mar. 13th, 2006, at 6:20 #

  61. [...] Download, upload, and activate Christoph Wimmer’s Heatmap plugin, without which our Tag Cloud would not grow. [...]

    Pingback by Muddhoney » Blog Archive » Test post on Mar. 19th, 2006, at 16:55 #

  62. [...] Download, upload, and activate Christoph Wimmer’s Heatmap plugin, without which our Tag Cloud would not grow. [...]

    Pingback by Lo-Fi Tribe » Blog Archive » Folksonomy Horticulture 101 on Mar. 19th, 2006, at 17:36 #

  63. I love the look of your plugin and I’m looking forward to using it.

    One feature I would LOVE to see is the ability to to show only a certain number of top catagories, and have all others hidden. (I don’t want all of these one or two entry catagories getting listed in my sidebar, but I don’t want to have to manually enter them for exclusion and enable them later if they grow large enough, as the plugin would currently require for keeping my heat map smaller.)

    Is this possible? Thanks!

    Comment by Jason on Apr. 13th, 2006, at 21:54 #

  64. [...] WordPress Heat Map, funcionamiento similar al anterior pero con la posibilidad de diferenciar con colores aquellas categorías o meses dependiendo de la cantidad de contenido. Perfectamente explicado en la página del plugin. Es el que estoy usando ahora mismo en el archivo y el protagonista de la imagen que acompaña al post. [...]

    Pingback by WP Heatmap y Popular Tags » La mate por un yogur on May. 19th, 2006, at 4:27 #

  65. [...] WordPress Heat Map plugin Plugin para Wordpress para mostrar las categorias con distinto tamaño de acuerdo a la cantidad de posts que tienen… tambien se conoce como “cloud” (tags: wordpress plugin plugins cloud tags categories) [...]

    Pingback by links for 2006-05-20 en newdisco on May. 20th, 2006, at 23:02 #

  66. [...] El nombre del plug-in es Heat Map y permite hacer una distinción entre etiquetas por colores y por tamaños. En mi caso las categorías/etiquetas menos utilizadas son las más pequeñas y con un color verde muy apagado. Por el contrario las más utilizadas son las más grandes y las que tienen un color más similar al resto de enlaces del blog. [...]

    Pingback by Dogwall.Net [Blog] » Nuevo plug-in: Heat Map on Jun. 12th, 2006, at 17:52 #

  67. [...] engadgeted.net ” WordPress Heat Map plugin The WordPress Heat Map plugin provides you with two new template tags for displaying a heat map (aka weighted list) of your categories and your monthly archives. [...]

    Pingback by Heat » engadgeted.net ” WordPress Heat Map plugin on Jun. 23rd, 2006, at 7:03 #

  68. [...] http://www.engadgeted.net/projects/wordpress-heat-map-plugin/ heat map a template for a way to organize tags [...]

    Pingback by Plug-in Mania at EMD | hub on Jun. 29th, 2006, at 18:29 #

  69. [...] engadgeted.net ” WordPress Heat Map plugin The WordPress Heat Map plugin provides you with two new template tags for displaying a heat map (aka weighted list) of your categories and your monthly archives. Permalink TrackBack [...]

    Pingback by Heat » Heat Tickets - Buy Miami Heat Tickets Sell Heat Tickets on Jul. 15th, 2006, at 14:49 #

  70. [...] Wordpress Heat Map Gr att du kan skapa ett moln av dina kategorier, dr de kategorier som innehller flest inlgg blir strst och tvrt om. I arkivet kan du se hur det ser ut (vnsterspalten, under “Kategorier”). Ganska kul eftersom det visar vad bloggen mest handlar om. Tidigare har moln varit frbehllna taggar (till exempel Ultimate Tag Warrior). [...]

    Pingback by Anvndbara vertyg fr Wordpress-bloggare | siktstorped on Jul. 20th, 2006, at 15:45 #

  71. [...] Thanks to engadgeted.net for the elegant and easy to use “heat map” plugin. [...]

    Pingback by Moving to Freedom: Ralph Waldo Emerson on Sep. 4th, 2006, at 0:13 #

  72. [...] WordPress Heat Map [...]

    Pingback by tri9ty.com » Blog Archive » tri9ty.com - Nu med WordPress 2.0 on Nov. 4th, 2006, at 8:47 #

  73. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by lapedrada.es.kz » Plugins para WordPress on Jan. 23rd, 2007, at 17:03 #

  74. [...] WordPress Heat Map 1.1 [...]

    Pingback by Updating to Wordpress 2.1 » SDLC Blog on Jan. 27th, 2007, at 23:41 #

  75. [...] Category Tagging: Con este no había forma, así que tuve que buscar una alternativa, o sea otro plugin que hiciera lo mismo, y el afortunado ha sido WordPress Heat Map. [...]

    Pingback by InKiLiNo | Blog personal » Blog Archive » Wordpress 2.1 funcionando on Jan. 30th, 2007, at 22:25 #

  76. [...] then it is missing this plugin: http://www.engadgeted.net/projects/wordpress-heat-map-plugin/ [...]

    Pingback by bensKnowledgeBlog - mooh.it » some WP-archives error messages on Feb. 5th, 2007, at 17:43 #

  77. [...] WordPress Heat Map plugin [...]

    Pingback by Maestreando en WordPress 2.1 — yukei.net on Feb. 13th, 2007, at 2:45 #

  78. [...] El plugin Weighted Categories, para mostrar la nube de categorías, no funciona en WP 2.1. En Yukei.net encontramos un sustituto: WordPress Heat Map plugin. En mi blog experimental continuo añadiendo éste y otros interersantes enlaces sobre WordPress. [...]

    Pingback by Enlaces del día … (19/02/07) » blogpocket 6.0 on Feb. 19th, 2007, at 7:00 #

  79. [...] Following the “release” of ShutterView, I’ve decided to release also the theme that I’m currently using. It is a 3-column theme based loosely on Whitespace by theundersigned.net. It has an integrated Heatmap Tag cloud plugin by engadgeted.net. Valid XHTML 1.0 Strict. NOT widget-friendly. Of course, I had to remove some of the items in the sidebar that uses plugins that I can not integrate. Well, all of the plugins will be integrated in the next release. More info in the Projects page. [...]

    Pingback by Gormful » WP-Theme: Gormspace 1.0 on Feb. 27th, 2007, at 6:55 #

  80. [...] Much of the first few days was spent retagging my articles under new and/or additional categories. Under Geeklog, I had one topic I could post to for each story. On WP, in order to utilize the tag cloud (Word Press Heat Map) I need to make better use of the categories. So, I had to go through each blog by hand and do the category assignments. Thank goodness I only had around 70 posts. [...]

    Pingback by SunFrogServices.com » WordPress conversion: tags, clouds and stats on Mar. 1st, 2007, at 19:36 #

  81. [...] Heat Map: Provides you with two new template tags for displaying a heat map (aka weighted list) of your categories and your monthly archives. [...]

    Pingback by j david macor.com | The Best Wordpress Plugins Revisited on Apr. 4th, 2007, at 6:53 #

  82. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by Profesor Blog » Los Mejores Plugins Para Worpress on Apr. 14th, 2007, at 11:33 #

  83. [...] I got tired of the huge list of topics/categories/tags on the left side, so I decided to hunt down a decent and easy plugin to make a nice little tag cloud out of them. The Wordpress Heat Map Plugin turned out to work perfect on the first try, so that’s all good now. [...]

    Pingback by The DeClutterization of Ramble | Ramblewords on Apr. 23rd, 2007, at 5:19 #

  84. [...] And, by using a combination of the Cat2Tag v 2.0 and WordPress Heat Map plugins, I wind up with a better solution anyway. digg_url=’http://www.darcynorman.net/2006/01/15/dumping_ultimate_tag_warrior_plugin/’; digg_skin = ‘button’; digg_bgcolor = ‘#FFFFFF’; digg_title = ‘Dumping "Ultimate Tag Warrior" Plugin’; digg_bodytext = ”; digg_topic = ”; Powered by Gregarious (42) Share This Popularity: 1% [?] [...]

    Pingback by D’Arcy Norman dot net » Blog Archive » Dumping “Ultimate Tag Warrior” Plugin on May. 5th, 2007, at 1:12 #

  85. the limit function isn’t working for me. I’ve tried the default 10 and 20 (no quotes, right?), but it lists ALL categories. help?

    Comment by Michael Zimmer on May. 11th, 2007, at 1:32 #

  86. Oops, my mistake. I was using v.1, and have now upgraded to v.2. Works great.

    Feature request: rather than just a simple limit, perhaps add variable to show only categories with at least n number of posts.

    Thanks!!

    Comment by Michael Zimmer on May. 11th, 2007, at 16:57 #

  87. Great plug in. Worked like a dream first time on by blog.

    Thanks
    Chris

    Comment by Chris on Jun. 26th, 2007, at 21:49 #

  88. [...] Visit [...]

    Pingback by WP Plugins DB » Plugin Details » WordPress Heat Map on Jul. 2nd, 2007, at 12:39 #

  89. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by » Enchula tu Blog,Plugins Para Worpress Información Tecnología Internet y Gadgets on Jul. 14th, 2007, at 4:54 #

  90. This is a great plugin. This type of is priceless for the new kid on the block.

    Thanks

    Vic

    Comment by Vic on Aug. 3rd, 2007, at 6:04 #

  91. [...] A 3-column theme based loosely on Whitespace by theundersigned.net. It has an integrated Heatmap Tag cloud plugin by engadgeted.net. Valid XHTML 1.0 Strict. NOT widget-friendly. [...]

    Pingback by Gormspace 1.0 WordPress Theme » D’ Technology Weblog: Technology News & Reviews on Aug. 14th, 2007, at 0:07 #

  92. I have 19 categories in my blog, but Heat is showing only 12 of them. Why is that? My blog is: http://omi.net.bd

    Comment by Omi Azad on Sep. 7th, 2007, at 8:29 #

  93. [...] This is really great, having a built-in tagging system, but WordPress developers didn’t have enough time to put in a configuration page for the tagging system. There were new Template Tags to use but that’s it. It’s not yet complete. The new Template Tags will let you show the tags for the current post, but does not yet have the capability to show the related posts/tags. You also can not make your tags link as Technorati’s tags, unlike with Ultimate Tag Warrior’s (UTW) technoraticommalist feature. Another Template Tag would be the wp_tag_cloud() and it does what it suggests. It generates a tag cloud. It can use some improvements also. At least have it render like Engadgeted’s Heatmap plugin. But of course, it’s still too early to draw conclusions with these new Template Tags. [...]

    Pingback by Gormful » Breaks and Fixes on Sep. 21st, 2007, at 20:48 #

  94. Have you had a chance to update this plugin for Wordpress 2.3? Do you need anyone to help you test it out or to hack away at it? I really like the plugin, and it’s the last one I need to update before I can upgrade to 2.3.

    Comment by Sean O'Steen on Sep. 22nd, 2007, at 22:40 #

  95. [...] My major problem was, that I could not get the heatmap running again. It just threw database errors. So I deactivated this for now and I looked for a fix. By doing so I fell over the Category Cloud pluging which was coming along with an own widget and therefore was easier to deal with. [...]

    Pingback by lazy bit » Updating to Wordpress 2.3 on Sep. 26th, 2007, at 8:47 #

  96. @92: Based on your brief problem description i can’t think of a possible cause for the problem.

    @94: I’ll try to look into the necessary changes in the next couple days, but it isn’t high priority for me right now. Feel free to hack away if you feel so inclined :)

    Comment by christoph on Sep. 26th, 2007, at 16:18 #

  97. Here are some links to get you started in getting this fixed:

    http://codex.wordpress.org/Version_2.3

    http://codex.wordpress.org/index.php?title=Version_2.3:New_Taxonomy

    Hope this helps — it’d be awesome to get this fixed ASAP — its such a great plug-in.

    Comment by Jon on Sep. 28th, 2007, at 20:52 #

  98. Has anyone had luck in updating the plug-in?

    Comment by Jon on Sep. 30th, 2007, at 18:42 #

  99. For those who would like an alternative, you can download this plug-in which creates the same effect, and works perfectly with 2.3:

    http://www.mapelli.info/web20/category-cloud-16

    Comment by Jon on Oct. 4th, 2007, at 0:40 #

  100. WP-Heatmap fix for Wordpress 2.3…

    워드프레스 2.3 업데이트 관련 글을 올리면서 Archives Page 에서 사용한 Wp-heatmap 플러그인이 제대로 동작하지 않ë…

    Trackback by 절망 클럽 on Oct. 17th, 2007, at 21:09 #

  101. 		$exclusions .= ' AND '.$wpdb->terms.'.term_ID  ' . intval($excat) . ' ';
    			}
    		}
    	}
        $query = "SELECT $wpdb->terms.term_ID AS `id`, $wpdb->terms.name AS `name`, $wpdb->terms.slug AS `nicename`, $wpdb->term_taxonomy.count AS `posts` FROM $wpdb->terms, $wpdb->term_taxonomy WHERE $wpdb->terms.term_ID = $wpdb->term_taxonomy.term_id AND $wpdb->term_taxonomy.taxonomy = 'category' $exclusions GROUP BY $wpdb->terms.term_id ORDER BY posts DESC";
    

    Comment by unfusion on Oct. 17th, 2007, at 21:11 #

  102. [...] for the tagcloud, just pick your favorite tagcloud plugin (UMW Blogs is using WordPress Heatmap Plugin that displays your categories on a page (I titled this page view so it wouldn’t be repetitive [...]

    Pingback by WPmu: Sitewide Tags, Search, and Archive at bavatuesdays on Nov. 5th, 2007, at 4:48 #

  103. [...] for the tagcloud, just pick your favorite tagcloud plugin (UMW Blogs is using WordPress Heatmap Plugin that displays your categories on a page (I titled this page view so it wouldn’t be repetitive [...]

    Pingback by Administrative Faculty Theme » WPMu: Sitewide Tags, Search, and Archive on Nov. 5th, 2007, at 8:44 #

  104. Thanks for creating this plugin!

    Comment by Alex on Nov. 9th, 2007, at 23:13 #

  105. [...] just pick your favorite plugin to display WP categories as a tagcloud. UMW Blogs is using the WordPress Heatmap Plugin that displays your categories on a page by including a PHP call in the page template that the [...]

    Pingback by » WPMu: Sitewide Tags, Search, and Archive WPMu Ed on Nov. 18th, 2007, at 13:03 #

  106. [...] WordPress Heat Map: this plug-in creates a heat map collection of post tags. [...]

    Pingback by WordPress Plug-ins I Use And Why | Thom Allen Weblog on Nov. 24th, 2007, at 4:23 #

  107. [...] Wordpress Heat Map Template tags for a heat map of category links and archive links. Read more about this plugin on the developers site here. This may eventually prove unneccessary with WPMu 1.3’s tagging features. [...]

    Pingback by A List of Plugins for WPMu at bavatuesdays on Dec. 4th, 2007, at 16:59 #

  108. I have updated the query for WP2.3 to skip over categories that have no posts:
    $query = “SELECT $wpdb->terms.term_ID AS `id`, $wpdb->terms.name AS `name`, $wpdb->terms.slug AS `nicename`, $wpdb->term_taxonomy.count AS `posts` FROM $wpdb->terms, $wpdb->term_taxonomy WHERE $wpdb->terms.term_ID = $wpdb->term_taxonomy.term_id AND $wpdb->term_taxonomy.taxonomy = ‘category’ AND $wpdb->term_taxonomy.count > 0 $exclusions GROUP BY $wpdb->terms.term_id ORDER BY posts DESC”;

    Comment by Steve on Jan. 15th, 2008, at 19:23 #

  109. [...] Wordpress Heat Map Template tags for a heat map of category links and archive links. Read more about this plugin on the developers site here. This may eventually prove unneccessary with WPMu 1.3’s tagging features. [...]

    Pingback by » A List of Plugins for WPMu WPMu Ed on Jan. 25th, 2008, at 5:29 #

  110. A great plugin! Thanks!

    I have wrapped it in some other HTML to allow it to be used in a widgetised sidebar at my site. All good. Reccommended.

    Comment by Pete on Feb. 13th, 2008, at 17:58 #

  111. I thought this is an actual heat map, where you have an image overlaid on top of the page, displaying the actual clicks.

    Seen some GPL source for that floating around…

    Comment by chris on Mar. 7th, 2008, at 1:40 #

  112. Hi,

    A great plug in. Any ideas on how to modify the code so it sniffs out the most popular tags on a site. (Sorry if I’m asking the obvious but I’m not up on PHP).

    all the best,

    Paul

    Comment by Paul on Mar. 12th, 2008, at 17:47 #

  113. [...] Tag Cloud was me bekend, maar dat je dit ook met je categorieën en je archief kan doen is nieuw voor mij. Een visuele weergave van de inhoud zegt veel meer dan een standaard rijtje. Plugin Tip!! [...]

    Pingback by Meulesteen » WordPress Heat Map plugin on Mar. 18th, 2008, at 20:52 #

  114. I second the request for adding ‘tags’ to the heatmap in addition to categories. Any ideas out there?

    Comment by Jeff on Mar. 19th, 2008, at 2:19 #

  115. [...] I’ve promised you a WordPress heatmap plugin. Just click the link and take it from [...]

    Pingback by SEO fun: Heatmaps, eye-tracking and a wordpress plugin | eydryan on Mar. 20th, 2008, at 15:47 #

  116. [...] Wordpress Heat Map - gör att du kan skapa ett moln av kategorier eller taggar. Ju fler inlägg som hamnat i en kategori eller märkts med en tagg, desto större kommer taggen/kategorin att se ut i molnet. Se mitt arkiv för exempel med kategorier. [...]

    Pingback by Svensk nybörjarguide till Wordpress 2.5 | Åsiktstorped on Mar. 30th, 2008, at 21:35 #

  117. [...] Heat Map plugin- Provides you with two new template tags for displaying a heat map (aka weighted list) of your [...]

    Pingback by Powerfull List of WordPress Lifesavers Plugins on Mar. 31st, 2008, at 2:43 #

  118. [...] har aktiverat ett nytt insticksprogram, Heat Map som gör att jag kan skapa nya typer av arkivsidor så nu har jag lagt till en sida med länkar [...]

    Pingback by Aktiverat WordPress Heat Map plugin | ScrappaNu on May. 25th, 2008, at 18:36 #

  119. [...] Heat Map plugin. Affiche à la façon d’une heatmap de vos catégories et vos archives mensuelles, en faisant varier la taille de police, l’intensité de la couleur ou les deux. [Téléchargement] [...]

    Pingback by Innovablog > 40+ killer plugin Wordpress pour rendre votre blog ultra-compétitif on Jun. 14th, 2008, at 15:32 #

  120. [...] hacer nubes de tags, también posible hacer una nube de categorías gracias a este plugin. * Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un [...]

    Pingback by WildBlog » Blog Archive » Los 72 mejores plugins wordpress para facilitarte la vida on Jun. 22nd, 2008, at 4:50 #

  121. Fatal error: Call to undefined function: heatmap_archives() in E:\inetpub\vhosts\li-an.fr\httpdocs\blog\wp-content\themes\arthemia\sidebar.php on line 75

    I’ve got this error…Is it a known bug ?

    Comment by Li-An on Jul. 7th, 2008, at 20:02 #

  122. Sorry. It works (I did delete le php file :-( oups).

    Comment by Li-An on Jul. 7th, 2008, at 20:05 #

  123. [...] Plugin: Here 70) Heat Map plugin- [...]

    Pingback by 70+博客插件大全 -- 诺亚SQUARE on Jul. 9th, 2008, at 12:11 #

  124. [...] har jag äntligen uppdaterat sidorna till Heat Map men jag har inte bestämt mig för var jag skall länka in dem [...]

    Pingback by Uppdaterat sidorna till Heat Map | ScrappaNu on Jul. 10th, 2008, at 6:38 #

  125. [...] har jag länkat in sidorna från Heat Map i länklisten i [...]

    Pingback by Länkat in “månader” och “kategorier” | ScrappaNu on Jul. 10th, 2008, at 17:48 #

  126. [...] Plugin: Here 70) Heat Map plugin- [...]

    Pingback by 五毒 » Blog Archive » 78个强大的Wordpress插件列表 on Jul. 11th, 2008, at 3:19 #

  127. [...] 今天就来说说归档插件,归档插件网上流传的比较好的有三个.1.clear archives(15K) 2.srg_clean_archives(40K) 3.wp-heatmap(7K). [...]

    Pingback by 琪琪的空间 » Blog Archive » 创建自已的归档页面 on Jul. 21st, 2008, at 15:15 #

  128. bug fix.
    wp-heatmap_2_6.php / Line 142 / get_category_link => get_tag_link

    Comment by KimHoon on Aug. 2nd, 2008, at 9:50 #

  129. @128: Fixed. Thanks for catching that, i should have tested it more carefully…

    Comment by christoph on Aug. 4th, 2008, at 1:30 #

  130. [...] Geeklog, I had one topic I could post to for each story. On WP, in order to utilize the tag cloud (Word Press Heat Map) I need to make better use of the categories. So, I had to go through each blog by hand and do the [...]

    Pingback by WordPress conversion: tags, clouds and stats : Random Kismet on Aug. 6th, 2008, at 18:47 #

  131. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by 282 plugins para WordPress (3ª parte de la F a la K) | Pichicola.com on Aug. 12th, 2008, at 1:44 #

  132. [...] Wordpress Heat Map Plugin下载页面 [...]

    Pingback by 10款Wordpress存档插件 | 帕兰映像 on Aug. 17th, 2008, at 9:11 #

  133. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Los 72 mejores plugins wordpress para facilitarte la vida on Aug. 18th, 2008, at 8:39 #

  134. [...] Plugin: Here 70) Heat Map plugin- Provides you with two new template tags for displaying a heat map (aka weighted list) of your [...]

    Pingback by Powerfull List of WordPress Lifesavers Plugins | download on Aug. 30th, 2008, at 2:38 #

  135. Where does this show up after installing it? I found it in my plug-ins, activated, went to my widgets but it’s not there. Any clue?

    Comment by katie on Aug. 30th, 2008, at 6:10 #

  136. [...] Plugin: Here 70) Heat Map plugin- [...]

    Pingback by 78个强大的Wordpress插件列表 | 随心所至 on Sep. 1st, 2008, at 6:49 #

  137. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Descargar Plugins para wordpress | Blog de posicionamiento on Sep. 3rd, 2008, at 4:32 #

  138. [...] Plugin: Here 70) Heat Map plugin- Provides you with two new template tags for displaying a heat map (aka weighted list) of your [...]

    Pingback by Wordpress Tags Plugins | h7x Organization on Sep. 13th, 2008, at 15:52 #

  139. [...] -WordPress Heat Map plugin [...]

    Pingback by WordPress Archives that *works*: StepxStep Guide and Plugins on Sep. 22nd, 2008, at 4:07 #

  140. [...] -WordPress Heat Map plugin [...]

    Pingback by WordPress Archive that *works*: StepxStep Guide and Plugins | POLPDESIGN on Sep. 22nd, 2008, at 17:22 #

  141. I test it in WP 2.6.1 and it work good
    http://www.configuracionvisual.com/test

    thanks for the job and for sahre it !
    adeux from ARG

    Comment by dlv on Oct. 5th, 2008, at 5:19 #

  142. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Los mejores plugins Wordpress - Megacolección | El blog de Crix on Oct. 6th, 2008, at 4:56 #

  143. [...] Clean Archives Clean Archives Reloaded 再或者WordPress Heat Map plugin [...]

    Pingback by Vin.C blog » Blog Archive » Wordpress 日志列表页面设置 on Oct. 19th, 2008, at 17:51 #

  144. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by Más plugin para Wordpress « El Cubanito Web on Nov. 1st, 2008, at 14:15 #

  145. @135: Sorry for the very late reply. The plugin does not support widgets currently. I’ll look into adding support for widgets in a future version.

    Comment by christoph on Nov. 5th, 2008, at 15:39 #

  146. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by Plugins Para WordPress | Mega Post on Dec. 21st, 2008, at 22:12 #

  147. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Los mejores plugins Wordpress - Megacolección on Jan. 12th, 2009, at 3:52 #

  148. Is there a way to limit the output of the tags by category?

    Comment by M on Jan. 22nd, 2009, at 7:45 #

  149. @148: unfortunately there isn’t, at least without modifying the plugin yourself i’m afraid.

    Comment by christoph on Jan. 31st, 2009, at 23:16 #

  150. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Los mejores plugins WordPress para el manejo de etiquetas | Red de Blogs - Internet y Tecnologia Web on Feb. 4th, 2009, at 19:21 #

  151. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by Inicio « mediasur.cl on Feb. 12th, 2009, at 8:17 #

  152. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by Plugins para Wordpress. | Puydi Publicidad 100% efectiva on Feb. 27th, 2009, at 23:25 #

  153. [...] le plugin: Ici 70) Heat Map plugin- Provides you with two new template tags for displaying a heat map (aka weighted list) of your [...]

    Pingback by 78 plugins Wordpress indispensable | Pimp Your Blog on Apr. 4th, 2009, at 0:09 #

  154. [...] le plugin: Ici 70) Heat Map plugin- Provides you with two new template tags for displaying a heat map (aka weighted list) of your [...]

    Pingback by 78 plugins Wordpress indispensables…Partie 2 | Pimp Your Blog on Apr. 4th, 2009, at 0:21 #

  155. [...] Wordpress Heatmap Plugin [...]

    Pingback by Search Engine Marketing | Metric Analysis | Zion Eye Media | Zion Eye Media - SEM/SEO on May. 13th, 2009, at 0:08 #

  156. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by webmaster esmuy.com » Blog Archive » Plugins para Wordpress on May. 21st, 2009, at 17:23 #

  157. [...] Heat Map: Proprociona funciones para mostrar una lista de categorías y meses con un tamaño proporcional al número de entradas en cada una (llamado heat map o weighted list). [...]

    Pingback by Gran colección de plugins Wordpress -- Mundo Inteligente on May. 26th, 2009, at 22:36 #

  158. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Los 72 mejores plugins wordpress para facilitarte la vida -- Mundo Inteligente on May. 26th, 2009, at 22:46 #

  159. [...] Heat Map plugin - Proporciona un par de códigos para mostrar las categorías y los archivos mensuales con un tamaño de letra y color de fuente de acuerdo a la cantidad de clics que reciben. [...]

    Pingback by Los 72 mejores plugins wordpress | lo tecnologico on Jun. 12th, 2009, at 19:46 #

Leave a response

Comments are subject to moderation.

RSS feed for responses to this post.

TrackBack URI for this post

(required)

(required, won't be displayed)