This is my first plugin for WordPress. It shows one or more icons next to every post for each category it belongs to. You can see it in action at the top right of every post of this blog.

This plugin is inspired on the idea of Topic Icon by Jason A. Trommetter (but coded from the scratch using PHP classes). The main improvements of “Multi-Topic Icon” are that it can show mainfold icons, one for every category (or only the icons you want) and an easy configuration trough a Options Page (with icon preview) in the Administration Panel.

This plugin is distributed under GPL terms.

Compatible with Wordpress 1.5 y 2.x.

[Download] the lastest version of Multi-Topic Icon.

For any question, doubt or suggestion, please, send me a message through the contact page.

Changelog:

  • Version 1.5 (06/10/07)
    Bugfix: Icon List fail on WordPress 2.3 or later. FIXED.
  • Version 1.4 (29/02/06)
    Feature: Possibility to assign a CSS style to the icons.
    Feature: Valid XHTML 1.0 Strict.
    Some HTML code revised.
  • Version 1.3 (27/02/06)
    Feature: Apply the filters to the category name (Useful to use it together with others plugins that modify the category name).
    Feature: Option to pick a random icon when multiple categories are available (For all post or individual posts).
    Some text and HTML code revised.
  • Version 1.2 (03/10/05)
    Feature: A default icon will be used when nothing else matches.
  • Version 1.1 (27/09/05)
    Bugfix: Fail getting image size. FIXED.
    Bugfix: Show the ‘uncategorized’ icon for the static pages. FIXED.
  • Version 1.0 (25/09/05)
    Initial release.

129 respuestas a “Multi-Topic Icon”

  1. Scarred Earth » Pugnaciously Particular Precocious ParvenuPolyglot Princesses Practice Prissy Prancing in Puerile Prolix Paroxysm, Perchance Passing Predominantly Purple-Painted Potable Perspicacious Polymath Palindromes–Perforce Propitiously dijo:

    […] I found a wonderful plug-in that will do the sweat-inducing-to-even-think-of things I mentioned before that might have required additions to the SQL database, so I dodged that bullet thanks in no small part to Pablo Chinea (a.k.a. Khertz) [who also happens to be using a theme based on Connections] and his Multi-Topic Icon plug-in, and Jason A. Trommetter who inspired and apparently helped with it. […]

  2. Eye of the Khaos » Extension dijo:

    […] Pablo Chinea. Ich überlege noch ob ich die Bilder verkleinere, mal sehen…. permalink | trackback uri| […]

  3. The Journeyler » Blog Archive » Blog Enhancement Stuff dijo:

    […] El Legado de Khertz » Multi-Topic Icon this is a per topic icon […]

  4. sheep.handturkeystudios.com » Blog Archive » Site updates dijo:

    […] Alright… I’m mostly happy with the layout of the site. I’ve implemented the RSS Import Plugin (see the sidebar for examples… we’re pulling headlines from Blender.org and Slashdot.org, and we’ll probably add a couple). Also, I went ahead and tweaked the Multi-Topic-Icon to display the multiple icons vertically instead of horizontally. In doing that, I also took out the align=”right” attribute from the image tags and wrapped the icons in a div with a class defined by the theme template (which happens to be based on the default Kubrick WordPress theme)… either alignleft or alignright, based on the config options. […]

  5. More Site Updates at Dev Dawn dijo:

    […] Each Category now has an image associated with it, which displays within the post, thanks to the Multi Topic Icon plugin. Am still experimenting with the size of the images. It may be too much to handle, we’ll see. […]

  6. Thomas dijo:

    Hi!

    The Plugin works wonderful. I use it identifying news in different language. However, I would like to show different icons (of one category) in different templates. Is there a way, something like: /images/icons/

    Please, have a look here, switch from english to “deutsch” (in the sidebar) and you will understand my problem.

    Thanks for you answer,
    Thomas

  7. Joseph dijo:

    Indeed is a great and exciting addition, but can you tell me how do get rid of that ugly outline box that always surrounds the selected images?

    Is that something configurable?

    Thanks

  8. Khertz dijo:

    Hello Thomas, you can have few icon sets using few prefixes (english_category.gif, deutsch_category.gif, …). But is not possible change the set automatically. You are using the Theme Switcher plugin, isn’t? you’ll have to hack my plugin to use the other plugin vars, personalizing the plugin for your necessities. I’ll send you some ideas about it to your mail.

  9. Khertz dijo:

    Hey Joseph, this is not problem with the plugin, this is a problem with the style of your theme. Try to add to your theme CSS:

    a img {
    border: none;
    }

  10. Thomas dijo:

    Hello Pable:

    Thanks for you ideas but it doesn’t work. Actually, it would already be fine if the path under options would not be the server path but if it would refer to the bloginfo: bloginfo(’template_directory’). I do it this way e.g. with my favicon that show up in different colors, see: csr-news.net

    Any ideas?

    Cheers, Thomas

  11. Karl dijo:

    Hello,

    is there a way to show the icons left of the titles instead of left of the posting texts?

    Muchas grazias

    Karl

  12. Khertz dijo:

    SHOW ICONS IN THE TITLE

    Many people ask for this feature, but lamentably there is not an easy way to do this.

    The Wordpress API don’t provide access to the title position but to the
    title string, the problem is this string is used several times (title, link,
    calendar, …) and the icon will appears in unsuitable places. It will
    happend if you change the line number 46 (in version 1.2):

    add_filter(’the_content’, array(’multi_topic_icon’, ‘add_icons’));

    to this one:

    add_filter(’the_title’, array(’multi_topic_icon’, ‘add_icons’));

    I think the only way to do this is hacking your theme files but I don’t know
    if you can access to the post vars needed to generate the icons.

    In conclusion, with a simple plugin this tweak is imposible (I think), I’ll
    study a possible theme hack to do this.

  13. Jason dijo:

    get_post_custom_values() appears to be broken in WP 2.0. I know there are entries in the wp_postmeta table for the entry I’m looking at, but they’re not retrieved by get_post_custom_values().

  14. Jon dijo:

    Let me first say I absolutely love your plugin, but I\’m having a bit of trouble putting the icon in the title. I tried what you posted in response to the several other requests, but I couldn\’t get the icon to show at all when the line of code was changed. I would really appreciate a solution whenever you have the time.
    You can view my site at the link above, but regretably it will only display properly using Mozilla Firefox. Sorry for any inconvienance this my have caused you. Again, many thanks,
    Jon

  15. Melissa dijo:

    Hi! I love your plugin, it’s really made a big difference in my blog’s appearance. I was wondering though, what would be the easiest way for me to call the get_icon_code function directly, like beside using it in the post? Should I just copy the necessary functions into an include file and change the function names?

  16. Khertz dijo:

    Hello Melissa, everything is possible, but I’m not sure that it is suitable, these functions was made for be used into the plugin and maybe it does not work like your wants.

    Anyway, as I said before, everything is possible, try it, and tell me later. Let’s go.

    First: WordPress don’t let you execute php code into a post (it would be a HUGE security hole). You can use the “Exec-PHP” Plugin (http://soeren-weber.net/post/2005/08/18/50/) to execute php code into a post (USE IT CAREFULLY).

    Second: Notice that get_icon_code don’t print the code, you will have to use “echo” for print the code.

    Third: This function is into an object, you will have to call it referring to the object.

    Conclusion: Install the Exec-PHP plugin and type into the post:

    <?php echo multi_topic_icon::get_img_code(”icon.png”, “description”); ?>

    That’s all :-)

  17. N. Mallory dijo:

    Now, if I could find an icon collection appropriate to download.

  18. Matthias dijo:

    Hi!

    Thanks for the great Plugin! But i have a problem. The plugin didn’t find my icon images.

    Look at this screenshots: http://opa114.pytalhost.de/wordpress/wp-images/screen.jpg

    I hope you or someone else could help me ;-)

    greets Matthias

  19. Khertz dijo:

    Hello, I need more information. What is the path you have the icons? Which operative system? web server? etc.

  20. Bundes dijo:

    In WP 1.5 plugin work beatyfull, but when i’m upgrade WP to 2.0 hе stop work. (for new category)

    Screenshot

    First 4 category i’m made in WP 1.5
    Last 3 category i’m made in WP 2.0
    Maybe WP 2.0 has new structure.
    Sorry for my bad english. :)

  21. Khertz dijo:

    It isn’t a problem about WP 2.0 (It seems you changed the blog ubication, from http://www.nichka.com/ to http://www.nichka.com/blog/ , isn’t?).

    The icons directory is duplicated: http://www.nichka.com/wp-images/icons/ and http://www.nichka.com/blog/wp-images/icons/ , the plugin is using the first directory but you put the icons into the second one.

    Solution: Put the new icons in the first directory or change the icons URI to /blog/wp-images/icons/ in the plugin configuration (I think the last solution is better).

    To avoid future mistakes delete the unused directory.

  22. Bundes dijo:

    Yes. Shure. I’s i forgott. Thanks :D

  23. N. Mallory dijo:

    I’m having a problem using the topicicon custom field with catagories that have an “&” in their name. (ie. “Blogging & Other Blogs”) I don’t get any icon when I do that though I have an icon associated with that category.

  24. Khertz dijo:

    Try to use “&#038;” (without quotes) instead of “&” and tell me if it works or not.

  25. kaparo dijo:

    Hi,

    Thanks for the excellent plugin. I’m trying to use it with my wordpress 2.0.2 installation, but seems there is something wrong. The icons are found and displayed in the “options” page, but they dont show within the post. Is there something additional to be added to enable displaying of the icons? Am I missing something? :)

    Thank you in advance
    kaparo

  26. kaparo dijo:

    Hi again,

    Just figured out. I’m showing excerpts in the main page … just added the filter for excerpts too … and it works :))

    Thank you very much.
    kaparo

  27. HotOnes dijo:

    Any way to get this to work with the feedwordpress 0.98 plugin?

    When I create new posts and choose a category it works fine, but when I import feeds from other sites and it auto-creates the post, it does not apply the category icon to it.

  28. Khertz dijo:

    I don’t use the feedwordpress so I don’t know how it works but it seems this plugin don’t set the category of the post properly. The Multi-topic-icon plugin get the category list directly to the post properties so if it don’t works the post properties are incorrect.

    Greetings

  29. Roger dijo:

    Where did you get your icons category??

    Thanks

  30. Khertz dijo:

    I got it in http://images.google.com/ :D (with the help of http://www.gimp.org/ :P).

  31. Ryan dijo:

    In response to HotOnes, I found some text on the FeedWorpress site that suggests that FWP turns off the auto-formatting for syndicated posts.

    “In any case, it is now fixed: FeedWordPress stops the normal formatting filters from working only on syndicated posts (which are already in HTML), and not on any posts or pages that you posted directly to your site.”

    Thanks to Alun for reminding me to fix this.

    The questions is: how to turn it back on so we can get our images?

    I think the two plugins would be a very nice complement to each other if they worked simultaneously.

  32. Ryan dijo:

    HACKED:
    FeedWordPress assigns a very high and very low priority to filter its content. I went one step higher than his, like this:

    Line 60:
    add_filter('the_content', array('multi_topic_icon', 'add_icons'), 10001);

    However, there must be one more place where a filter is added, but if you can avoid using the ‘topicicon’ metadata key to only show explicit icons, your sydicated feeds can now have icons.

  33. Jodok dijo:

    Very nice plugin! I got it working even putting some table displaying code to show author name under author icon :) (you can see it working at www.texxtus.net at all other pages than “home”).

  34. Jacquie Cattanach dijo:

    Hi, thank you for the plugin. I was hoping you could help me with my trouble-shooting. I used my icon as a default since I wanted the same icon with all posts, but on my main blog page, the icon appears more than once if it is in more than one category? How can I get it to appear only once?

    Also, I was hoping that the icon could be more imbedded within the text. Still on the right hand side but not sticking out on top. Please have a look at www.online-running-gear.com

    Thanks for any help that you can provide.

  35. Khertz dijo:

    Hello Jacquie,

    Add a custom field with any one of the categories (see README), for
    example: ‘topicicon’ -> ‘Running Interest Stories’.

    You can put the icon where you want using the ‘CSS Defined’ alignment and editing your css (you’ll
    need knowledge about css).

  36. Jacquie Cattanach dijo:

    Hi Khertz, thank you for your help. I can probably figure out the CSS but can you please lead me in the right direction for the custom field.

    Does this get changed in the multi-topic-icon.php file? If so what would I add to make the change? My knowledge of php is limited.

    Thanks again,

    Also - how did you get the functionality of users having to enter a code to submit a question. I love it - should be good for stopping spam. Was this a wordpress plugin?

  37. Khertz dijo:

    You don’t have to edit the php file. Please read the ‘readme.txt’ ;-), how to add a custom field to show only some icons is expained in the “Frequently Asked Questions” section. You can find detailed information about custom fields in the Wordpress homepage.

    The captcha functionality is powered by the plugin Capcha!, programmed by my friend Boriel.

  38. memetaso dijo:

    hello, your plugin doesnt work at my site.
    wordpress 2.x is istalled in:
    http://marathon.milten.lima-city.de/Blog1/
    where have I to put my icons, have I to change the chmods?

  39. BlueBelugaBlog » Blog Archive » Multi-Topic Icons dijo:

    […] Trovate questo plugin e relative istruzioni su http://www.khertz.net/multi-topic-icon/ […]

  40. Khertz dijo:

    Hello, memetaso. The script detect (by default) .png .gif and .jpg files, if you want to use .ico files you must add the extension the field “File Types” at the options page (”Options” > “Multi-Topic Icon”).

    Greetings

  41. Tessa dijo:

    I love your hack, and am quite content using it. However, how would I be able to move the images to the right when using the css defined style?

  42. Khertz dijo:

    Hello Tessa, you can do that with “float:right” but this is exactly the same that selecting the “Right” alignment in the options menu. Anyway, if you don’t know much about CSS I recommend to you to select the “Right” alignment. Sorry, I can’t help you much more, I’m not an expert in CSS.

  43. BloggingPro China » Blog Archive » WordPress Plugin: Multi-Topic Icon dijo:

    […]   Multi-Topic Icon,在每篇文章的右上角根据文章分类显示一些预定义的图标,经常访问./和solidot.cn的都很熟悉这种效果。 icon solidot […]

  44. apher dijo:

    Cool~ :D

  45. killercup dijo:

    hello kherz, nice plugin! thank you very much!
    but is there any possibility to change the code so, that there are no icons in feeds?
    thanks for your answer!

  46. Khertz dijo:

    Hello killercup, the icons are shown when you show the full text but not when you show the summary (excerpt) of the post. The feed usually are built with the summary (and therefore without icons), you are using the full text. I recommend to you to use the summary (Admin panel > Options > Reading > Syndication Feeds > Summary).

    Anyway, if you want to use full text with the feeds you can edit the plugin changing the line #152:

    if (is_page()) return $text;

    with the line:

    if (is_page() || is_feed()) return $text;

    Greetings,

  47. Alex dijo:

    Hola Khertz,

    your plugin is great, after I figured out how it works it is like a charm. The only thing what I would like to have is, when you click on a category it opens the archive of the specific category with all their posts, but it’s not showing the icon anymore. It’s only showing the icon on the main page or if I click on a post, how can I make it visible when I click on the category?

    Gracias

    Alex

  48. Khertz dijo:

    Hello Alex,

    There are two way of showing posts: with the full text or with an excerpt. The icons will be shown only in the full text. Your theme use the full text in the main page but the excerpt in the categories archive, so you have two chances: hack your theme for showing full text in the categories archive or hack my plugin for showing the icons in the excerpt.

    Personally I prefer the first option because sometimes the icon don’t look fine with a litte text (too much image for little text) but both options are perfectly viable, what option do you prefer? :-)

    Greetings,

    Pablo

  49. Roberto dijo:

    Hola

    La verdad no pude hacerlo funcionar, ya que al ingresar el directorio de los iconos me agrega un slash antes. Entonces, me decia que los iconos estarian en /var/www//icons/

    En realidad deberian estar en /www/icons/.

    Modifique el $SERVER_ (lo elimine) y puse en el icon uri la direccion absoluta y tampoco me funciono. En todo caso, voy a darle otra vuelta, pero cuando haces el trim de la uri que uno ingresa y quitas los slashes ‘/’ los vuelves a poner, entonces no importa si uno ingresa en el uri /icons/ o icons/, siempre vuelve a darme la direccion con // en vez de /.

    Un saludo desde Chile, y espero que se entienda el problema.
    Roberto

    PS: Utilizo Wordpress 2.03 y no se la version de php().

  50. Khertz dijo:

    Hola Roberto, vayamos por partes :-P. Primero tienes que tener en cuenta es que cuando usas un hosting compartido tu directorio raíz puede no ser (de hecho no suele ser) el directorio raíz del sistema, que es sobre la que trabaja el php. Por ejemplo, lo que tu puedes ver como /www/ para el php puede ser /home/treybal/www/. Esto se denomina chroot y se usa como medida de seguridad para evitar que el usuario acceda a los ficheros del sistema.

    Ahora bien, el servidor es un Apache (2.0.54) sobre un sistema GNU/Linux (Debian) y por defecto tiene en su configuración la linea:

    Alias /icons/ /usr/share/apache/icons/

    esto significa que cuando tu pones http://treybal.phpnet.us/icons/ no estás accediendo a tu directorio /www/icons/ sino a /usr/share/apache/icons/, así que tendrías que cambiar el nombre del directorio, yo te recomiendo que cambies el nombre del directorio (wp-icons/ por ejemplo), o que lo incluyas dentro de otro directorio (wp-images/icons/).

    Por otro lado, el que aparezcan doble slash no es normal, ni tampoco es lógico que tu ruta sea /var/www/, crea un fichero php en tu cuenta que contenga únicamente la siguiente linea:

    < ?php phpinfo() ?>

    y envíame la ruta a esa página para ver que rutas y variables usa tu hosting.

  51. carballada.com » De reformas dijo:

    […] Además sigo haciendo pruebas con el khertz.net y su multi-topic-icon, a ver si finalmente lo incluyo en el funcionamiento normal. -Carballada […]

  52. Haddow Press Experiment » Useful Plugins for WordPress - Part 1 dijo:

    […] The Multi-Topic Icon | LINK […]

  53. carballada.com » Críticas, estrellitas e iconos dijo:

    […] haciendo pruebas con el khertz.net y su multi-topic-icon. -Carballada sin comentarios trackback this article comentar estearticulo […]

  54. Florent dijo:

    hello, i put my icons in this way:
    http://start1g.ovh.net/~mathstra/wp-images/

    and the name of my icon is topic_mon-cours de-sixieme.png.

    And your pluggin answers: icon not found.
    What can i do?

  55. Khertz dijo:

    Hello Florent, I’m sorry to reply so late, but I have been very busy last week.

    I need more information, tell me your configuration (Icons URI, Icons directory, Icon prefix) or send me a screenshot of the admin page.

  56. 我使用的Wordpress插件 - 于震牌五香烤子鱼 dijo:

    […] 清单与说明如下: Anarchy Media Player 在线MP3 WMV播放器,是个Flash的。 Adhesive 简单又好用置顶插件 下载地址 Multi-Topic Icon 不同分类设定不同的头像 Spam Karma 2 比预装的那个好用的反垃圾留言的工具。 WP-ShortStatblog访问统计系统 我今天的页面访问量是3300。 […]

  57. Alex dijo:

    Hello Khertz,
    your plugin is absolutely great. I have two thinks, I would love to able to do.

    1. Is it possible to use an absolute path for the icon instead of a relative path. I have a function, that people can send a post to a friend and when they send it to them, the icon box is blank, because it’s only showing the relative path to the picture.

    2. Is it possible to exclude some categories to show an icon? For example, I have the category Gallery and the subcategory 2006, I will have them in both categories but only showing the 2006 icon, not a Gallery icon.

    Thank you for your help, I appreciate it a lot.

    Alex

  58. Khertz dijo:

    Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/khertz/www/wp-content/plugins/CodeHighlight/CodeHighlight.php on line 194

    Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/khertz/www/wp-content/plugins/CodeHighlight/CodeHighlight.php on line 194

    Hello Alex,

    1. Try to edit the plugin file and change the line 114:

    with the line:

    and tell me if it works for you.

    2. Of course, just read the readme.txt file ;-). You have to add a custom field with the key ‘topicicon’ and the value ‘2006′. Btw, why do you insert the post in both categories? If it belongs to 2006 it belongs implicitly to Gallery too.

  59. WordPress中文首页测试 » Blog Archive » plug-ins dijo:

    […] Anarchy Media Player 在线MP3 WMV播放器,是个Flash的。 Adhesive 简单又好用置顶插件 下载地址 Multi-Topic Icon 不同分类设定不同的头像 Spam Karma 2 比预装的那个好用的反垃圾留言的工具。 WP-ShortStatblog访问统计系统 我今天的页面访问量是3300。 WP-PostViews 统计每篇文章被阅读的次数,有预防同IP刷新的功能,比较准确,需要修改个别模板稍微复杂一点。 GetDEF 来自Google的名词解释,当然不是每个词都能被解释,不能被解释的就不显示了。 […]

  60. Patrick dijo:

    Is there a way I can make the icons directory fixed? it keeps erasing itself here and won’t stay fixed.

  61. Khertz dijo:

    Hello Patrick, I don’t understand your problem. What is exactly your problem? And tell me your configuration: Icons URI, Icons Directory, OS, web server, …

  62. Garinungkadol » Blog Archive » The Quest for Userpics Continues dijo:

    […] The closest plugin I could find was Multi Topic Icon but I found it cumbersome to use especially in terms of positioning the image. […]

  63. Ms vida a BlogEL con iconos para cada categora » BlogEL dijo:

    […] Este vez se han aadido iconos en los posts para cada categora, muy similar a la portada del sitio y en especifico a la seccin Actualidad, gracias al plugin Multi-Topic Icon que tiene por autor a Pablo Chinea. […]

  64. Orlando dijo:

    Perfecto.

  65. Jon dijo:

    Thanks for the plugin but I can’t seem to get this to work for anything! I put my files in the right directory (content/plugins/icons)and named them the right way…”topic-illustrator.jpg” On the config page for the plugin, at the bottom it doesn’t show the icon but it also doesn’t say “no icon found.” When I go to the post it shows a broken link for a split second then just shows white space. I’m using WP2.
    [IMG]http://i15.photobucket.com/albums/a378/SpiffyJ/Picture1.png[/IMG]

  66. Khertz dijo:

    Hello Jon, I need more information: your configuration, your base directory, a full screenshot of the configuration page, the source code of the broken link, etc…

  67. ReBoot Revival » Most Profiles done dijo:

    […] I was looking around at the plugins and this one seemed of interest to me, http://www.khertz.net/multi-topic-icon/ . Might be something cool, dunno. Anyways, maybe we can solve the javascript stuff and think up a way to stream the vids (remeber I converted them to flv to reduce the filesize, so maybe checkout streaming that format?). […]

  68. Mandy dijo:

    Hi! I love your multi topic icon plugin it. Very simple to install just took a min and it was working. This is a great plugin also for those of us who run multi-author blogs. ;-)

    Thank you for making it! :mrgreen:

  69. Koki dijo:

    Hola Khertz, instalé el plugin en mi blog de prueba y está excelente. Antes de pasarlo a mi sitio principal tengo una duda: es posible que los íconos aparezcan al final de la entrada en vez de que aparezcan al inicio?

    saludos

  70. Khertz dijo:

    Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/khertz/www/wp-content/plugins/CodeHighlight/CodeHighlight.php on line 194

    Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/khertz/www/wp-content/plugins/CodeHighlight/CodeHighlight.php on line 194

    Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/khertz/www/wp-content/plugins/CodeHighlight/CodeHighlight.php on line 194

    Hola Koki, la verdad es que esa opción es algo exótica y lógicamente no viene en la página de configuración (eres la primera persona que me pide eso :-P), así que para hacerlo tendrás que editar (hackear) el código del plugin, pero es un cambio muy pequeño. Basta con cambiar la línea 166:

    por

    o también por (es equivalente):

    y con eso te lo haría, lo que no se es como se tomará lo de la alineación, pruébalo y ya nos cuentas.

    Un saludo,

  71. Koki dijo:

    Listo Khertz, te he enviado la modificación :smile:

  72. kameravene.fi blogi » Arkisto » soutaa huopaa… dijo:

    […] Multi-Topic Icon […]

  73. WP Plugins DB » Blog Archive » Multi-Topic Icon dijo:

    […] Visit […]

  74. 50+ WordPress Plugins for Multimedia dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]

  75. 50+ Plugins de Wordpress para Multimedia « Quest’s Blog dijo:

    […] Multi-Topic Icon […]

  76. 50 余款 WordPress 多媒体发布的插件 dijo:

    […] Enlarger - IImage Panorama - Image Headlines - Lightbox 2 - Multi-Topic Icon - Random Image - Transparent PNG Fix - WP […]

  77.   50 Multimedya Worldpress plugin by # YaMTaR dijo:

    […] Multi-Topic Icon […]

  78. 8 efectos de imagen… para tener un Wordpress más elegante : dijo:

    […] Multi-Topic Icon: Galería de imágenes de cada una de las categorías del blog. […]

  79. 50 plugins para manejo multimedia en Wordpress « COMPU-RECURSOS dijo:

    […] Multi-Topic Icon – Te permite colocar un icono para cada categoría de tu blog. […]

  80. WORDPRESS GOD:300+ Tools for Running Your WordPress Blog dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]

  81. voozzy.com » Blog Archive » Плагины для WordPress dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  82. bilgiservisim » Wordpress multimedya eklentileri dijo:

    […] Konu ikonu.: Kategorilerin her birini temsil eden imgelerin atadığı gösteririr […]

  83. Бизнес » Архив блога » Плагины для wordpress dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  84. 300+ Popular Plugins for Running Your WordPress Blog dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]

  85.   Подборка Wordpress Плагинов by Блог Читера dijo:

    […] Multi-Topic Icon - плагин позволяет присвоить к каждой категории блога иконку и впоследствии вместо названия категории показывается изображение. […]

  86. Wordpress god300 tools for running your wordpress blog by mashabale.com · Cyber Space in One Hand dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]

  87. 50 - Wordpress | dijo:

    […] Multi-Topic Icon - , , . […]

  88. WORDPRESS TODAY CHOICE at Artistik Intelligence Agency dijo:

    […] Includes interface for browsing and uploading images and basic tools such as cropping and rotating.Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog […]

  89. On-line дневник оптимизатора dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  90. On-line дневник оптимизатора » Архив блога » Плагины для Wordpress с описанием на русском в 3-х частях. Часть 2. dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  91. Morphey dijo:

    hey bro.
    i’ve translated this plug (and i think it’s AWSOME! :) ), but it doesnt shows me the icons.
    i’ve configured the folder and stuff, and i added the line to the single.php file (so everytime someone will enter a post it will show up), but it don’t shows.
    have i done something wrong?
    thx! Dvir.

  92. WordPress: +100 plugins et applications pour votre blog WP dijo:

    […] Multi-Topic Icon: Affiche des images qui représentent chacune des catégories que vous attribuez à vos posts. […]

  93. Khertz dijo:

    Hello Morphey, I have been thinking to add support for translation with gettext
    (without editing the plugin code). If finaly I add this feature I’ll will ask
    you for the translation ;-).

    You don’t have to modify any file, the icons must to appear automaticaly in
    every post. The plugin seems to works correcty, but the icon files seems to
    be corrupted:

    http://morphey.mooo.com/images/topic_art-writing.png
    http://morphey.mooo.com/images/topic_boring.png
    http://morphey.mooo.com/images/topic_computers.png
    http://morphey.mooo.com/images/topic_general.png
    http://morphey.mooo.com/images/topic_my-life.png

    make sure you can see the icons using directly in the browser. Anyway, send me
    more information about your configuration (or send me a screenshot of the
    configuration page).

  94. Плагины для WordPress dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  95. Плагины для WordPress | Блог Дениса Лизунова dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  96. WordPress 2.3 compatiblity Plugins | Dreamer's Blog dijo:

    […] Multi-Topic Icon (http://www.khertz.net/multi-topic-icon/) 1.5 […]

  97. ARHI » Blog Archive » Pluginuri de baza pentru un blogger dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]

  98. dyohanan.com » Great Tools To Use With Your Wordpress Blog dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]

  99. dimanet » Архив блога » Список разных плагинов для WordPress dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  100. daniel dijo:

    Works wp-2.3.1 ?

  101. Khertz dijo:

    Yes, it works. I’m using it with WP 2.3.1.

  102. Оформление WordPress - плагины | Миша.Мчедлишвили dijo:

    […] Multi-Topic Icon - плагин позволяет присвоить к каждой категории блога иконку, и затем вместо названия категории показывается изображение. […]

  103. PaddyS dijo:

    Hi there Khertz

    I love the idea behind the plugin, but would love it even more if it was the header images (as someone else has suggested). I noticed you mentioned you would look into this in a custom theme, but couldnt see anything else about it… have you found anything to do this?

    Paddy

  104. Плагины для Wordpress на русском! Часть 2-я | Каталог SEO статей dijo:

    […] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]

  105. 50+ WordPress Plugins for Multimedia | SEO | SEM | Affiliate Expert | Andy Huang dijo:

    […] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. Random Image – Pulls a random image you have places on your blog and links back to the post it came from. Transparent PNG Fix – Make sure your PNG files don’t look nasty. WP Wetfloor – Create the ever-popular reflection effect for the images on your blog. Playing Music Del.icio.us MP3 Player – Makes links to MP3s in your posts playable and easily postable to del.icio.us. Audio Player – Inserts a simple MP3 player into your posts that plays uploaded audio files. XSFP Player – Flash player that allows you to embed music on your blog via http. What Am I Listening To? DG PlayingNow Updater – Displays the song you are currently listening to on iTunes, MSN Messenger, or J. River Media Center. EZ-Scrobbler – Displays your most recently listened to tracks on last.fm. iTunes Spy – Displays your most recently listened to tracks on iTunes. Pandora Feeds – Displays data from Pandora feeds, for example, a list of your stations, bookmarked songs, and bookmarked artists. onAirNow – Now playing plugin that displays most recent song from iTunes or WinAmp. Podcasting Tools Odeo – Embed a podcast you’ve recorded on Odeo. Podcast Release – A “release” form for guests of your podcast, accepting your terms. PodPress – Full featured plugin for podcasters including feed generation, iTunes preview, and download stats. […]

  106. Fko dijo:

    Enhorabuena por este valioso plug-in!

    Me encanta, es exactamente lo que estaba buscando y lo encuentro muy fácil de usar. Puedes visitar mi web para ver tu aportación a la misma, jeje.

    Una pregunta: ¿crees posible que si un post pertenece a varias categorías los iconos se muestren a la derecha, UNO DEBAJO DE OTRO (no en la misma linea)?

    Muchas gracias y enhorabuena otra vez.

  107. Khertz dijo:

    Hola, muchas gracias por tus palabras de apoyo.

    Sí, sí que se puede, usando la alineación por CSS puedes hacer todo lo que quieras (y más) con los iconos, aunque necesitarás saber algo sobre hojas de estilo en cascada (Cascade Style Sheet). No se si tienes conocimientos al respecto, pero hay multitud de tutoriales por internet.

    No soy un experto en CSS, pero supongo que para lo que quieres bastaría poner en la hoja de estilos:

    .mti_div {
      float: left;
    }
    
    .mti_icon {
      display: block;
    }

    Acabo de probar eso mismo y funciona bien, lo único que en mi caso quedan muy pegados a las letras, así que yo al ‘mti_div’ le añadiría un ‘margin: 5px;’ o algo así. Experimenta y un poco con la hoja de estilo y ya me cuentas.

  108. Nicomashi dijo:

    Хотел поставить в корпоративный блог, чтобы перед темой сообщения выводилась иконка, но что-то приведенный пример просто ломает заголовок, если кто-нибудь разберется, дайте знать пожалуйста.

    Заранее спасибо!

  109. Nicomashi dijo:

    А если поставить дату на верх, над заголовком, то получается вполне сносно. Вот код

    add_filter(’the_date’, array(’multi_topic_icon’, ‘add_icons’), 10001);

  110. newz dijo:

    Hallo,
    i am using your plugin for a long time now….

    For me it is not working WP2.5

    thank
    you

  111. LOmiG dijo:

    hi,
    thanks for this great plugin…

    I just would like to use the icon images besides the title. I saw in the comments that it’s not easy : is it still the case ?

    I think it might be possible to place it besides the title by using negative values in the css definition : do you think it”s possible ?

    thanks a lot !

  112. alex66 dijo:

    In WP 2.1 plugin working i’m upgrade WP to 2.5 but i dont now working or no ????

  113. Khertz dijo:

    For me it is working perfectly with WP 2.5.1. Do you have any problem with the plugin after upgrade WP?

  114. Zerger dijo:

    Thank you a lot for this plugin! :)

  115. Eduard dijo:

    I really enjoyed reading all of your posts.

  116. abacanome dijo:

    Добрый день!
    Смотрите на - Кресла и стулья

    Вы узнате много полезного и нового.
    Спасибо!

  117. zerosteller dijo:

    Thanks :mrgreen:

  118. ToKoTo dijo:

    Hola, o este plugin no funciona en WP 2.6 o soy muy cazurro para que funcione :oops:

  119. ToKoTo dijo:

    Bueno, me reafirmo, soy un cazurro. La cuestión era que el nombre de la categoría y el del icono debían ser exactamente los mismos (sin minúsculas) :oops:

  120. Khertz dijo:

    Hola ToKoTo, el plugin utiliza el “nice_name” de la categoría, que no tiene que ser exactamente el nombre de la categoría (ya que este puede contener tildes, eñes y otros caracteres no ASCII que pueden causar problemas en un nombre de fichero), puedes ver exactamente como será el nombre del fichero en la lista de iconos que aparece en la página de configuración.

    Si tienes algún otro problema, no dudes en hacermelo saber. Un saludo.

  121. tokoto dijo:

    Encontrar tu plugin ya ha sido una bendición

    Una pregunta… podrías ponerme el código para separar un poco los iconos del texo? es que he visto en la respuesta 107 de esta entrada que pones el código para poner en vertical los iconos y luego dices que con añadir un poco de código más se puede separar.

    Osea ¿te importaría decirme en qué fichero hay que ponerlo y dónde?

    Ahora dudo si quiero poner en vertical los iconos (normalmente pongo tres categorías por entrada) pero lo que si necesitaría es que se separara un poco del texto.

    Muchas gracias

  122. Khertz dijo:

    Veamos, el plugin trae 2 alineaciones simples predefinidas (izquierda y derecha), para lo que quieres hacer tendrías seleccionar, en la página de configuración, la alineación por CSS (CSS Defined), con esto deshabilitas estas alineaciones predefinidas y dejas los iconos preparados para ser manejados completamente mediante la hoja de estilos. A partir de aquí sale del ámbito del plugin y es cosa del diseño de la plantilla de tu blog, por lo que lo que tienes que modificar es precisamente la CSS de tu tema, para esto necesitarás tener conociemientos de hojas de estilos, muchas veces se trata de usar la técnica prueba-error para lograr el resultado deseado.

    Como prueba inicial puedes modificar el fichero ’style.php’ de tu tema y añadirle al final:

    .mti_div {
      float: left;
      margin: 5px;
    }

    eso debería darte algo cercano a lo que buscas (no soy un experto en CSS). En cualquier caso te recomiendo que te documentes sobre las hojas de estilos, al menos un poco, las CSS son todo un mundo.

    Un saludo.

  123. tokoto dijo:

    Uys, con seleccionar CSS defined ya se ponen encima del texto, con eso me vale y me ahorro la angustia de jugar con el código. Gracias

  124. dima dijo:

    Very good!!! Nice progekt.

  125. Miraya dijo:

    Que horror! Pues no tuve mas remedio que poner la nueva version de Wordpress en mi pagina y ahora no trabaja el Multi-topic Icon que era una de mis cosas favoritas!!! Sera que habra un update? :cry: :idea:

  126. Khertz dijo:

    No debería ser la actualización, acabo de probar la última versión de WP y el plugin funciona perfectamente. Por lo que parece no es lo único que te falló tras la actualización, posiblemente haya salido algo mal durante el proceso. En cualquier caso el plugin está funcionando, pero no localiza icono para la única categoría que existe ‘Misc’. Supongo que deberás revisar la configuracion del plugin y ver si la ruta a los iconos está bien, si te sigue fallando envíame una captura de la página de configuración del plugin.

    Un saludo.

  127. TaunT dijo:

    ээх, а ссылки-то все нофоллоу, смысла для гугла никакого

  128. cocoroco dijo:

    Hola!
    ¿No hay manera de colocar el plugin a la derecha del título en lugar de dentro del mismo post?
    Gracias!

  129. Khertz dijo:

    No, lo siento, no es posible, tal y como se explica en el readme.txt, la API de Wordpress no provee la posición del título para poder insertar el icono.

    Un saludo.

Dejar una respuesta

Powered by WP Hashcash