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.
2005-10-22 a las 9.18 pm
[…] 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. […]
2005-10-26 a las 2.39 pm
[…] Pablo Chinea. Ich überlege noch ob ich die Bilder verkleinere, mal sehen…. permalink | trackback uri| […]
2005-11-16 a las 10.36 am
[…] El Legado de Khertz » Multi-Topic Icon this is a per topic icon […]
2005-11-26 a las 5.37 am
[…] 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. […]
2005-11-29 a las 7.42 am
[…] 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. […]
2005-11-30 a las 4.37 pm
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
2005-12-01 a las 7.05 pm
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
2005-12-02 a las 12.36 am
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.
2005-12-02 a las 12.39 am
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;
}
2005-12-02 a las 4.43 pm
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
2005-12-26 a las 8.44 pm
Hello,
is there a way to show the icons left of the titles instead of left of the posting texts?
Muchas grazias
Karl
2005-12-26 a las 10.27 pm
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.
2005-12-27 a las 4.35 pm
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().
2006-01-18 a las 6.13 pm
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
2006-02-06 a las 3.01 am
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?
2006-02-06 a las 9.27 am
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
2006-02-09 a las 5.41 pm
Now, if I could find an icon collection appropriate to download.
2006-02-18 a las 12.28 am
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
2006-02-18 a las 1.42 am
Hello, I need more information. What is the path you have the icons? Which operative system? web server? etc.
2006-02-18 a las 11.50 am
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.
2006-02-18 a las 12.32 pm
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.
2006-02-18 a las 5.26 pm
Yes. Shure. I’s i forgott. Thanks
2006-02-25 a las 3.49 pm
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.
2006-02-25 a las 4.11 pm
Try to use “&” (without quotes) instead of “&” and tell me if it works or not.
2006-03-18 a las 1.42 am
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
2006-03-18 a las 1.48 am
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
2006-03-31 a las 11.31 pm
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.
2006-04-01 a las 3.01 pm
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
2006-04-15 a las 5.48 pm
Where did you get your icons category??
Thanks
2006-04-16 a las 8.51 am
I got it in http://images.google.com/
(with the help of http://www.gimp.org/ :P).
2006-04-17 a las 6.46 am
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.
2006-04-17 a las 7.06 am
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.
2006-04-20 a las 3.57 pm
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”).
2006-05-01 a las 10.46 pm
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.
2006-05-01 a las 11.37 pm
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).
2006-05-02 a las 1.54 pm
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?
2006-05-02 a las 2.54 pm
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.
2006-05-06 a las 11.19 am
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?
2006-05-07 a las 11.44 am
[…] Trovate questo plugin e relative istruzioni su http://www.khertz.net/multi-topic-icon/ […]
2006-05-13 a las 11.09 am
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
2006-05-23 a las 11.27 am
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?
2006-05-23 a las 2.21 pm
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.
2006-05-28 a las 1.23 pm
[…] Multi-Topic Icon,在每篇文章的右上角根据文章分类显示一些预定义的图标,经常访问./和solidot.cn的都很熟悉这种效果。 icon solidot […]
2006-06-03 a las 7.19 am
Cool~
2006-06-18 a las 4.48 pm
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!
2006-06-18 a las 11.40 pm
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,
2006-06-24 a las 1.03 am
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
2006-06-24 a las 8.27 am
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
2006-07-13 a las 9.59 pm
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().
2006-07-13 a las 11.27 pm
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.
2006-07-21 a las 10.59 pm
[…] 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 […]
2006-08-01 a las 3.57 pm
[…] The Multi-Topic Icon | LINK […]
2006-08-05 a las 3.37 pm
[…] haciendo pruebas con el khertz.net y su multi-topic-icon. -Carballada sin comentarios trackback this article comentar estearticulo […]
2006-08-13 a las 12.14 pm
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?
2006-08-15 a las 7.15 am
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.
2006-09-20 a las 12.53 pm
[…] 清单与说明如下: Anarchy Media Player 在线MP3 WMV播放器,是个Flash的。 Adhesive 简单又好用置顶插件 下载地址 Multi-Topic Icon 不同分类设定不同的头像 Spam Karma 2 比预装的那个好用的反垃圾留言的工具。 WP-ShortStatblog访问统计系统 我今天的页面访问量是3300。 […]
2006-09-25 a las 8.08 pm
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
2006-09-26 a las 10.45 am
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.
2006-10-01 a las 3.53 am
[…] Anarchy Media Player 在线MP3 WMV播放器,是个Flash的。 Adhesive 简单又好用置顶插件 下载地址 Multi-Topic Icon 不同分类设定不同的头像 Spam Karma 2 比预装的那个好用的反垃圾留言的工具。 WP-ShortStatblog访问统计系统 我今天的页面访问量是3300。 WP-PostViews 统计每篇文章被阅读的次数,有预防同IP刷新的功能,比较准确,需要修改个别模板稍微复杂一点。 GetDEF 来自Google的名词解释,当然不是每个词都能被解释,不能被解释的就不显示了。 […]
2006-10-13 a las 7.33 pm
Is there a way I can make the icons directory fixed? it keeps erasing itself here and won’t stay fixed.
2006-10-16 a las 7.09 am
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, …
2006-12-16 a las 1.42 am
[…] The closest plugin I could find was Multi Topic Icon but I found it cumbersome to use especially in terms of positioning the image. […]
2006-12-27 a las 12.26 am
[…] 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. […]
2007-01-05 a las 11.00 am
Perfecto.
2007-01-07 a las 12.08 am
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]
2007-01-07 a las 12.43 am
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…
2007-01-12 a las 8.05 am
[…] 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?). […]
2007-01-12 a las 4.42 pm
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!
2007-01-30 a las 5.34 am
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
2007-01-30 a las 8.33 am
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,
2007-01-31 a las 3.05 pm
Listo Khertz, te he enviado la modificación
2007-03-30 a las 8.16 pm
[…] Multi-Topic Icon […]
2007-05-20 a las 7.47 am
[…] Visit […]
2007-07-28 a las 1.46 am
[…] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]
2007-07-28 a las 4.31 pm
[…] Multi-Topic Icon […]
2007-07-29 a las 4.14 am
[…] Enlarger - IImage Panorama - Image Headlines - Lightbox 2 - Multi-Topic Icon - Random Image - Transparent PNG Fix - WP […]
2007-07-30 a las 3.32 pm
[…] Multi-Topic Icon […]
2007-07-31 a las 6.52 pm
[…] Multi-Topic Icon: Galería de imágenes de cada una de las categorías del blog. […]
2007-08-03 a las 2.32 am
[…] Multi-Topic Icon – Te permite colocar un icono para cada categoría de tu blog. […]
2007-08-17 a las 3.22 am
[…] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]
2007-09-04 a las 6.13 pm
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-09-11 a las 12.12 pm
[…] Konu ikonu.: Kategorilerin her birini temsil eden imgelerin atadığı gösteririr […]
2007-09-20 a las 6.55 am
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-09-26 a las 1.48 pm
[…] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]
2007-09-26 a las 1.50 pm
[…] Multi-Topic Icon - плагин позволяет присвоить к каждой категории блога иконку и впоследствии вместо названия категории показывается изображение. […]
2007-09-28 a las 9.41 am
[…] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]
2007-10-04 a las 11.05 am
[…] Multi-Topic Icon - , , . […]
2007-10-26 a las 3.11 pm
[…] 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 […]
2007-11-04 a las 7.33 pm
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-11-04 a las 7.38 pm
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-11-11 a las 4.14 pm
hey bro.
), but it doesnt shows me the icons.
i’ve translated this plug (and i think it’s AWSOME!
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.
2007-11-11 a las 9.28 pm
[…] Multi-Topic Icon: Affiche des images qui représentent chacune des catégories que vous attribuez à vos posts. […]
2007-11-12 a las 12.18 am
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).
2007-11-16 a las 9.15 pm
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-11-22 a las 4.57 pm
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-12-06 a las 11.19 pm
[…] Multi-Topic Icon (http://www.khertz.net/multi-topic-icon/) 1.5 […]
2007-12-09 a las 1.38 pm
[…] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]
2007-12-13 a las 3.52 pm
[…] Multi-Topic Icon: Shows images that represent each of the categories assigned to a blog post. […]
2007-12-20 a las 8.54 pm
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2007-12-22 a las 10.38 am
Works wp-2.3.1 ?
2007-12-22 a las 10.57 am
Yes, it works. I’m using it with WP 2.3.1.
2008-01-04 a las 9.57 pm
[…] Multi-Topic Icon - плагин позволяет присвоить к каждой категории блога иконку, и затем вместо названия категории показывается изображение. […]
2008-01-21 a las 1.20 am
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
2008-01-22 a las 10.00 am
[…] размере по клику и выводит его в форме лайтбокса. Multi-Topic Icon: плагин позволяет присвоить к каждой категории блога […]
2008-01-28 a las 7.26 pm
[…] 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. […]
2008-03-03 a las 6.21 pm
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.
2008-03-03 a las 6.58 pm
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:
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.
2008-03-31 a las 7.09 pm
Хотел поставить в корпоративный блог, чтобы перед темой сообщения выводилась иконка, но что-то приведенный пример просто ломает заголовок, если кто-нибудь разберется, дайте знать пожалуйста.
Заранее спасибо!
2008-03-31 a las 7.17 pm
А если поставить дату на верх, над заголовком, то получается вполне сносно. Вот код
add_filter(’the_date’, array(’multi_topic_icon’, ‘add_icons’), 10001);
2008-04-09 a las 11.06 pm
Hallo,
i am using your plugin for a long time now….
For me it is not working WP2.5
thank
you
2008-04-23 a las 8.55 am
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 !
2008-04-26 a las 10.24 pm
In WP 2.1 plugin working i’m upgrade WP to 2.5 but i dont now working or no ????
2008-04-27 a las 5.44 pm
For me it is working perfectly with WP 2.5.1. Do you have any problem with the plugin after upgrade WP?
2008-05-01 a las 11.50 am
Thank you a lot for this plugin!
2008-05-12 a las 3.41 am
I really enjoyed reading all of your posts.