[fr] Un petit bidouillage pour que mon plugin wordpress pour ajouter des tags ne montre (dans Technorati) que les billets de votre propre blog.
Here’s a quick hack for all of you who, [like Fabienne](http://www.maplanete.ch/carnet/?p=1369), are disappointed that my [Bunny’s Technorati Tags plugin](http://dev.wp-plugins.org/wiki/BunnysTechnoratiTags) points to the technorati tagspace instead of just your own posts.
For it to work, your plugin files need to be writable (how to do this is beyond the scope of this post, but try looking for a way to chmod 777
or whatever in your FTP program; if you use the command line, then chmod -R 777 wp-content/plugins
should do it). Then, open the plugin editor (WP admin screen > Plugins > Plugin Editor) and edit the file for Bunny’s Technorati Tags.
Look for this code:
$tag_link=’‘ . $display_tag . ‘‘ . $separator;
// make a link to the technorati tag page, with tag link text
And replace it with this:
$tag_link=’‘ . $display_tag . ‘‘ . $separator;
// make a link to the technorati tag page, with tag link text
This isn’t quite the same as pointing them to a page *on your blog* which contains all the posts. But the final result is pretty similar. Otherwise, Fabienne says that [Jerome’s Keywords Plugin](http://vapourtrails.ca/wp-keywords) does the trick for her.
Similar Posts:
- Ridding WordPress Plugins of Template Tags [en] (2007)
- Simple Technorati Tags Plugin for WordPress [en] (2005)
- Mystery WordPress/Markdown Problem: Troubleshooting [en] (2007)
- Basic Bilingual Plugin [en] (2005)
- Basic Bilingual and Bunny's Technorati Tags Plugins Updated for WordPress 2.1 [en] (2007)
- Call to WordPress Plugin Developers [en] (2005)
- Basic Bilingual 0.3 for Multilingual Blogging [en] (2007)
- Bunny's Language Linker: New WordPress Plugin [en] (2007)
- Basic Bilingual 0.4 [en] (2009)
- Bunny's Print CSS Plugin Upgrade [en] (2008)