Skip navigation

A Tagging Bookmarklet for WordPress and WordPress.com Users

Lorelle’s tagging signature bookmarkletI get a lot of questions about the tags I use at the bottom of most of my posts. I used to feature two sets of tags, one for Technorati tags and the other as navigation tags to search my site. Up until recently, these were created from a text file I kept open all the time with my tag list all laid out. I’d copy and paste the tags I wanted into the bottom of each post. Well, now I don’t have to.

The technique I use for putting my Site Search Tags on the bottom of each post uses a bookmarklet. A bookmarklet is a bit of javascript that you can put on your bookmark or favorites sidebar or toolbar, similar to the WordPress Press It Bookmarklet. I keep my tagging bookmarklet in my toolbar so it’s fast and easy to access. The javascript is literally a mini-program with programming language instructions. In this case, the bookmarklet brings up a pop-up window form in which I enter my tags and click OKAY, then it generates a list of my tags and HTML which I copy and paste into the bottom of my posts. Nice and simple.

Oddiophile’s Rather Fab Technorati Tags Bookmarklet contains javascript instructions which adds tags to your blog. I ran across this little gem while researching for my article on More Must Have Bookmarklets Than You Can Swing a Bookmarklet At.

While this tagging bookmarklet works great as it is, the look of the tags is controlled by a <span> CSS tag. With the full version of WordPress, you can customize the look of the tags, but in WordPress.com blogs, all that code is stripped away. So what do you do? We’ll get to that. Stay tuned.

Note: Now there are two versions of this Tagging Bookmarklet. There is the first version which includes pluses (+) between the linked combined tag phrases and a space between tag words, and another version that shows only a space between linked combined tag phrases and a comma between the the tag words.

Using Oddiophile’s Technorati Tags Bookmarklet to Make Your Own Tagging Bookmarklet

To use, go to Oddiophile’s Rather Fab Technorati Tags Bookmarklet and click and drag the Oddiophile’s link to your sidebar or tool bar. A link will appear.

  1. While writing a post in the WordPress Write Post panel, click the Oddiophile bookmarklet link.
  2. In the popup window that appears on your screen, enter the Technorati tag names you want to use.

    Entering tag names for Technorati tagging bookmarklet

  3. Use one word terms or two or more word phrases with a plus between the words, no spaces (unless using the new version listed below – then use spaces):
    wordpress+tips
  4. Do NOT use commas, only spaces to separate the words. To use multi-word phrases as tags, put a + between the words such as wordpress+plugins (Unless using the newer version listed below which does not use the + sign and does use commas to separate the words).
  5. Click Okay.
  6. In the next window, copy the text with the copy shortcut keys CTRL+C.

    Copy text from Technorati Tagging Bookmarklet to paste into your post

  7. Click Okay.
  8. Move your cursor to the point in your post where you want the tags to appear.
  9. Paste the text with the paste shortcut keys CTRL+V.

That’s all it takes to put Technorati tags in any full version WordPress post.

Customizing the Tagging Bookmarklet for WordPress.com Users

That’s right. I hear the brakes squealing. You are using the limited version of WordPress called and . You want all the joys of easily adding Technorati tags to your posts, right?

Well, Lorelle is here to make your day.

The problem is that Oddiophile’s Technorati tagging bookmarklet just isn’t very pretty with WordPress.com blogs. It puts the tags in a <span>, dependent upon CSS stylesheets to style its look. Unfortunately, the powers behind WordPress.com have stripped away all our abilities to add CSS and HTML tags other than the most simple and common tags to our posts. It just looks like part of the text. So we use our creativity and the tools we do have access to and make this tagging thing look pretty.

The key is to put in whatever HTML and style tags you can get away with.

To change the structure of the Technorati Tagging Bookmarklet, do the following:

  1. Make sure you have the Oddiophile’s Rather Fab Technorati Tags Bookmarklet in your Favorites or Bookmarks.
  2. Right click the bookmarklet link and choose Properties.
  3. Move your cursor to the Location block.
  4. With your keyboard, press CTRL+A to select the whole code, or just select it with your mouse. Make sure you get all of it.
  5. Paste the code in a text editor (not word processor!)
  6. Make your changes and edit the code.
  7. Copy the newly edited code.
  8. Right click on the Tagging Bookmarklet on your toolbar or links and choose Properties.
  9. Move your cursor to the Location block.
  10. Select the old code and delete it.
  11. Paste in the newly edited code.
  12. Click OKAY and then test drive the new code.

If it doesn’t work when you test it, it could be because you accidentally deleted part of the code, the quote marks have been turned into “pretty quotes” by WordPress.com (search and replace them to make them plain quote marks), or the tags you are using don’t work. If it works, do a little dance and have fun with this.

In my tag list, I use a horizontal line to separate the tags from the post. Then in a paragraph, I list the title in bold, followed by the tag links. At the end I include a copyright notice and two graphics, one for my signature and one for , of which I’m a member. Very simple.

The following is my full Tagging Bookmarklet with all my customizations.


javascript:(function(){var a='';var t=prompt('Enter Tags without commas:','');if(!t) return;var tr=t.split(' ');a+='<hr /><p><b>Site Search Tags:</b> ';for(var i=0;i<tr.length;i++){if(i > 0){a+=', ';}a+='<a href='+unescape('%22')+'https://lorelle.wordpress.com/index.php?s='+tr[i]+unescape('%22')+' rel='+unescape('%22')+'tag'+unescape('%22')+'>'+tr[i]+'</a>';}a+='<br /><a href='+unescape('%22')+'http://www.cameraontheroad.com/'+unescape('%22')+' title='+unescape('%22')+'Copyright Protected by Brent and Lorelle VanFossen'+unescape('%22')+'>Copyright Lorelle VanFossen</a>, <a href='+unescape('%22')+'http://9rules.com/'+unescape('%22')+' title='+unescape('%22')+'Member of 9Rules Blogging Network'+unescape('%22')+'>member of the 9Rules Network</a></p><img src='+unescape('%22')+'https://lorelle.files.wordpress.com/sig.png'+unescape('%22')+' alt='+unescape('%22')+''+unescape('%22')+' /><img src='+unescape('%22')+'https://lorelle.files.wordpress.com/9rules.png'+unescape('%22')+' alt='+unescape('%22')+'Member of the 9Rules Blogging Network'+unescape('%22')+' />';prompt('Copy this code, press OK, then paste to your blog entry:',a);})()


Let’s look at this piece by piece and I’ll show you how you can change this to make it your own.

Changing the Bookmarklet Prompts

You can set the bookmarklet prompts, the text you see in the pop-up windows, to say whatever you need it to say to help you remember what you are doing and how to do it. For instance, I needed a reminder to not use commas, so I added “Enter Tags without commas” to remind myself.

To change the prompts, change the sections featuring:

...prompt('Enter Tags without commas:','');...

and

...prompt('Copy this code, press OK, then paste to your blog entry:',a)...

to whatever you would like it to say.

Change the Bookmarklet Layout

In my example, I have tags for a horizontal line, the paragraph tag, the title in bold, then the links, followed by HTML tags featuring the copyright information and two graphics. In the simplest form, the HTML looks like this:

<hr />
<p><strong>Site Search Tags:</strong> TAG LINK CODE GOES HERE <br />
<a href="https://lorelle.wordpress.com/" title="Copyright Protected by Brent 
and Lorelle VanFossen">Copyright Lorelle VanFossen</a>, 
<a href="http://9rules.com/" title="Member of 9Rules Blogging Network">member of the 9Rules Network</a></p>

Since the bookmarklet code is pasted into your blog post, the code will appear in your blog feeds. To make the links valid, clickable to your blog search “tags”, the full URL of your blog must be included in the tag links. If you would like the images in your “signature” included, make sure the links are also full absolute URLs in order for the images to load in the feed readers.

Here are where you find these tags so you can change them yourself to make them be whatever you want them to be:

Starting HTML:

...var tr=t.split(' ');a+='<hr /><p><strong>Site Search Tags:</strong> ';

Ending HTML:

...;}a+='<br /><a href='+unescape('%22')+'https://lorelle.wordpress.com/'+unescape('%22')+' title='+unescape('%22')+'Copyright Protected by Brent and Lorelle VanFossen'+unescape('%22')+'>Copyright Lorelle VanFossen</a>, <a href='+unescape('%22')+'http://9rules.com/'+unescape('%22')+' title='+unescape('%22')+'Member of 9Rules Blogging Network'+unescape('%22')+'>member of the 9Rules Network</a></p>...

Note that all quote marks within the code don’t quite look like themselves. They are represented by '+unescape('%22')+'. This allows them to pass through the programming code as quote marks, not influencing the code itself. Take care not to delete any part of the code outside of the elements you want to change. If you do, and the bookmarklet won’t work, start over and make sure that you are extra careful with all those characters.

Adding Graphics to the Tagging Bookmarklet

I encourage you to use your imagination and have fun with this. I’ve added two graphics, a signature and the 9Rules logo, but you can add anything you want. A photograph, a cartoon, your signature, a doodle, whatever you can create with a graphics program. I do recommend that you keep the file size low to allow the graphic to load fast, and that the graphic you choose doesn’t screw up your layout, but do whatever you want. Be creative.

To add the graphics, I put them at the end of the paragraph tag, but you can add them anywhere. Just remember to use the '+unescape('%22')+' in place of any quote marks around the image links and alt tags.

...</p><img src='+unescape('%22')+'https://lorelle.files.wordpress.com/sig.png'+unescape('%22')+' 
alt='+unescape('%22')+''+unescape('%22')+' />
<img src='+unescape('%22')+'
https://lorelle.files.wordpress.com/9rules.png'+unescape('%22')+' alt='+unescape('%22')+'Member 
of the 9Rules Blogging Network'+unescape('%22')+' />';prompt...

I used relative links to my graphics, but you can also use fixed links such as http://example.files.wordpress.com/2006/03/sig.png. It doesn’t change things, just lightens the code load.

Changing the Tagging Bookmarklet Tag Links

As I said, you don’t have to use links to Technorati in your tag links. You are not penalized or punished in any way for using any URL in your tag links. They can be off-site or on-site (intrasite) links. I personally prefer to keep my visitors on my blog, so I use intrasite links.

For site search tag links in your tagging bookmarklet, use the following bit of code, as I have done:

...'<a href='+unescape('%22')+'https://lorelle.wordpress.com/index.php?s='+tr[i]+unescape('%22')+'...

To change the links to other sites, and remember it can be to any website you want, instead of using this link for Technorati:

...;<a href='+unescape('%22')+'http://www.technorati.com/tags/'+tr[i]+...

Simply replace the URL link with your tagging service of choice.

Here are some examples:

  • Technorati: http://www.technorati.com/tag/tagname
  • WordPress.com: http://wordpress.com/tag/tagname
  • Del.icio.us: http://del.icio.us/tag/tagname
  • IceRocket: http://blogs.icerocket.com/tag/
  • TagJag: http://tagjag.com/discovery/
  • BlinkList: http://www.blinklist.com/tag/
  • BlogMarks: http://www.blogmarks.net/marks/tag/
  • RawSugar: http://www.rawsugar.com/search/
  • Sphere: http://www.sphere.com/featured-blogs?q=
  • Google Blogsearch: http://blogsearch.google.com/blogsearch?hl=en&q=
  • Yahoo MyWeb Tags: http://myweb.yahoo.com/myweb?ei=UTF-8&dg=6&tag=
  • Lorelle on WordPress: https://lorelle.wordpress.com/index.php?s=
  • Flickr: http://www.flickr.com/photos/tags/
  • Eventful: http://eventful.com/events/tags/
  • Scuttle: http://www.scuttle.org/tags.php/
  • Upcoming: http://upcoming.org/tag/
  • Ask: http://ask.metafilter.com/tags/

This should get you started designing your own tags with the Tagging Bookmarklet. There are a lot of things you can do like add a comma or pipe [|] or asterisk between the tag words. If you come up with some neat designs, ideas, or other places to link your search tags to, please post a link here so we can check it out.

Remember, you can find More Must Have Bookmarklets Than You Can Swing a Bookmarklet At also on this site, and if you have any favorite bookmarklets of your own, please post them there so we can add to the list.


LouCypher’s Technorati and Site Search GreaseMonkey Bookmarklets

LouCypher has taken the above javascript bookmarklets I developed based on the Oddiophile’s Rather Fab Technorati Tags Bookmarklet, and put them into two GreaseMonkey userscripts to add to Firefox. The first one is to create Technorati Tag Links and the second one is to create site search tags on your WordPress blogs. You can find both of them on his post, “Technorati Tags Button Bookmarklet”, on his WordPress.com blog.

Thanks, Lou, for the great scripts! They will really help folks.

And for the rest of you, this is just another example of the magic of the WordPress Community and its determination to work together to create great things. Amazing.


Comma and Space Separated Version of the Tagging Bookmarklet

Rakesh of Bavra Mann has developed a version of my Technorati Tagging Bookmarklet that finally fixed what I haven’t had time to fix. You can now use commas as you enter words, without the plus sign to connect them together, and in the pasted version, there are no plus signs between the words.

His version is at Rakesh’s Technorati Tags Bookmarklet with Commas and Spaces, and here is a detailed look at how to break it down to incorporate your own layout and code. It’s meant as a guide to use to create your own tagging bookmarklet. See Rakesh’s blog for this new version’s full code.

The first section initiates the bookmarklet script with the prompt text:

javascript: ( function() { var a=''; var t=prompt('Enter 
Tags separated by commas:',''); 
if(!t) return; var tr=t.split(','); a+='

At this point, put the HTML tags that start your layout. Usually this is the title section. This is my layout:

<hr /><p><font size="-1"><b>Site Search Tags:</b> 

The next section handles the search and replace technique that replaces the need for the + sign.

'; for(var i=0;i<tr.length;i++) 
{ tr[i]=tr[i].replace(/^\s+/,""); 
tr[i]=tr[i].replace(/\s+$/,""); var 
tag_text=tr[i]; tr[i]=tr[i].replace(/\s+/g,"+"); 
if(i > 0){ a+=', '; } a+='

The next section wraps the tag links around the tag words. If you are using WordPress and wish to feature your tags as site search tags (highly recommended), then leave this as http://lorelle.wordpress.com/index.php?s=. If you would like to replace the tag link with an off-site tag service, then carefully change it to one of the other links mentioned above.

Remember, the +unescape('%22')+ represents a quote mark, required for these links to work. Do not remove or edit them.

<a href='+unescape('%22')+'https://lorelle.wordpress.com/index.php?s='
+tr[i]+unescape('%22')+' rel='+unescape('%22')+'tag'
+unescape('%22')+'>'+tag_text+'</a>'; } a+='

The following section is any final HTML tags or information you would like to add to your tag list. It can end with a paragraph tag </p> or be something more, like my signature example:

<br /><a href='+unescape('%22')+'
http://www.cameraontheroad.com/'+unescape('%22')+' 
title='+unescape('%22')+'Copyright Protected by 
Brent and Lorelle VanFossen'+unescape('%22')+'>
Copyright Lorelle VanFossen</a>, <a href='+unescape('%22')+'
http://9rules.com/'+unescape('%22')+' title='+unescape('%22')+'
Member of 9Rules Blogging Network'+unescape('%22')+'>
member of the 9Rules Network</a></font></p>
<img src='+unescape('%22')+'https://lorelle.files.wordpress.com/sig.gif'+unescape('%22')+' 
alt='+unescape('%22')+''+unescape('%22')+' />
<img src='+unescape('%22')+'https://lorelle.files.wordpress.com/9rules.gif'+unescape('%22')+' 
alt='+unescape('%22')+'Member of the 9Rules Blogging
 Network'+unescape('%22')+' />

The final section adds the last prompt in the tag popup window. You can change this to say anything you want.

';prompt('Copy this code, press OK, then paste to your blog entry:',a);})()

Thanks, Rakesh, for this great variation!

Troubleshooting The Tagging Bookmarklet

The following are the most common questions and problems with this Javascript bookmarklet:

  • It won’t work: As mentioned, make sure there are no quote marks in the code. Remove all line breaks so the script is on one line. Take care in editing or modifying this as one missed bit of code and it won’t work. Keep backups as you modify it.
  • Is this available as a WordPress Plugin? No. It is a Javacript bookmarklet and not a WordPress Plugin. It is saved to your browser and has no connection with WordPress or its base code.
  • It won’t work in X browser: Javascript bookmarklets will work with most popular browsers including Firefox, Internet Explorer, Safari, Opera, and others. You may have to make changes to the script depending upon how that browser interprets Javascript.
  • I’d like to add my picture to the signature area: You can add any graphic(s) you want to the script in the format outlined.
  • Will this work on Blogger or FaceBook blogs? This technique will work on any blog, not just WordPress blogs, as long as the blogging program will not strip out HTML code. It works from within your browser not your blogging program, so you should be able to use it on anything.

Related Articles

Member of the 9Rules Blogging Network


Site Search Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Feed on Lorelle on WordPress Subscribe Feedburner iconVia Feedburner Subscribe by Email

Copyright Lorelle VanFossen, member of the 9Rules Network, and author of Blogging Tips, What Bloggers Won't Tell You About Blogging.

55 Comments

  1. Posted October 21, 2005 at 8:21 pm | Permalink

    WOW!
    Now that’s exactly what I wanted to find 🙂
    AND it will apply to both my normal WordPress blog AND my WordPress.com blog.
    A HUGE thanks Lorelle 🙂

  2. Posted December 26, 2005 at 2:01 pm | Permalink

    Don’t forget to add if(!t) return; between var t=prompt('Enter Tags without commas:',''); and var tr=t.split(' ');

  3. .derek
    Posted December 26, 2005 at 2:02 pm | Permalink

    but what about your site search tags. all the tags point to error 404 pages?

  4. Posted December 26, 2005 at 2:34 pm | Permalink

    Good catch on the site search tags for this post. When I wrote it, wordpress.com allowed me to use a straight “index.php” relative link. Now, for whatever reasons, I have to use “/index.php” in my relative links in order for them to work. I have changed a lot of them, but of course, as the odds would have it, the one post in which I need them to work per example, I must have missed.

    Gads, I wish wordpress.com had database search and replace functions!

    Thanks for pointing that out.

  5. Posted December 26, 2005 at 2:35 pm | Permalink

    LouCypher,

    Why should your suggestion be added? It works fine without so I’m curious.

    Thanks.

  6. Posted December 26, 2005 at 3:48 pm | Permalink

    It works fine, yes, but actually it returns an error if you press cancel. If you’re using Firefox/Opera, open JavaScript Console and see the error message.

    Oh, BTW, I’ve made a Greasemonkey userscript based on the bookmarklet above.

  7. Posted December 26, 2005 at 6:05 pm | Permalink

    Ah, I’ve hit cancel and never noticed the error. Good point. I’ll change the code. Thanks!

  8. .derek
    Posted December 26, 2005 at 7:41 pm | Permalink

    lou that gm script rocks.

    so lorelle what would be the js for adding site tags?

  9. .derek
    Posted December 26, 2005 at 7:45 pm | Permalink

    nevermind. sorry for th last comment. i missed “index.php”.

  10. Posted December 26, 2005 at 8:13 pm | Permalink

    Thanks for reminding me to put emphasis on the use of the “/index.php” in the links and such. I’ve updated the article to for more clarity on creating site search tags.

  11. Posted December 27, 2005 at 10:36 am | Permalink

    I made another GM scripts as you suggested.
    Thanks.

  12. Posted December 27, 2005 at 4:00 pm | Permalink

    Lou, you are a star! I added the scripts to the post above. Thanks so much. I just adore how great minds work together in the WordPress Community!

  13. BillyG
    Posted February 26, 2006 at 1:53 am | Permalink

    Sorry, my slow brain still isn’t following this last js block.

    If we copy your js code block, change the cameraontheraod link, use our graphic for the seperation line and edit the copyright names, do we add it to our index.php where we want it to appear for each post, and doing so will auto-magically grab link words to use, or do we insert this type code at the end of each post modifying the links to use the search words we want for that post?

    With the above mods, I got a 404 while it was in the preview window, not sure what would happen if I went “live” with it. Sorry, and TIA.

    running WP 2.01 (my addy is my domain if you need to check something my end)

  14. Posted February 26, 2006 at 8:58 am | Permalink

    Oh, no, you do NOT add this to template files (index.php, single.php, etc.). This is a bookmarklet, a little piece of javascript that sits in a link in your Internet browser.

    In the third paragraph is the description on how to put the Oddiophile bookmarklet on your browser’s LINKS or BOOKMARKS bar. Then you can edit it by RIGHT CLICK > PROPERTIES and replace it with the new javascript.

    To use it, simply click the link in your browser Links or Bookmarks bar and it will pop up to allow you to enter in the information, as the rest of the instructions explain. Then copy and paste the information in the bottom of your post.

    If you are using the full version of WordPress, I recommend that you do not use this method but use the Ultimate Tag Warrior WordPress Plugin instead. It is much more powerful, more automatic, and easier to use. You can also create a tag cloud or heat map with it, adding more navigational aids to your blog.

    This technique is for those running WordPress on WordPressMU like WordPress.com, or who are nervous about Plugins or editing their template files.

    I hope this clears things up.

  15. Posted March 17, 2006 at 11:26 am | Permalink

    I’m currently only including site search tags in my posts, but I’m going to include Technorati tags also. I was thinking about adding target=’_blank’ to the Technorati tag links to force their opening in a new window. Would that interfere with Technorati when it gathers site info? Would it hurt SEO?

  16. Posted March 17, 2006 at 12:28 pm | Permalink

    By the way, all this is because I thought that the site search tags could replace Technorati tags, but the tag that Technorati reads from a link like, i.e., https://lorelle.wordpress.com/index.php?s=tagging, is “index.php?s=tagging”, isn’t it? What I mean is that a tag would be all the text that comes after the last “/”, right? i realized this when I looked at my Technorati profile and saw a bunch of tags like index.php?s=baseball… index.php?s=bbq… index.php?s=beisbol… index.php?s=bomberos… index.php?s=captopril… index.php?s=eidetic memory…

    And, going back to my previous comment, would including a target=’_blank’ attribute (supposing it doesn’t interfere with either Technorati nor SEO) be considered a rude way for making people stay on your website? I prefer opening links in new tabs in Firefox, so I can do some “parallel browsing”. But there are still all those other people who use IE… Anyway, what do you think about all this?

  17. Posted March 17, 2006 at 12:32 pm | Permalink

    One last thing. Do you know if there are any guidelines for tagging in Spanish? Would tagging with “compañía” be the same as “compania”? I guess the same thing would apply for tags in French, Dutch, or any other languages with strange symbols on their letters.

  18. Posted March 17, 2006 at 2:42 pm | Permalink

    The tag is the word in the link text, not in the link itself. So the “tag” ready by Technorati, Google, Yahoo, or anyone else is “tag” in <a href="/index.php?s=fred">tag</a> in the most simplistic explanation. It doesn’t matter what the link says. It’s the word linked. Links to Technorati are links that benefit Technorati’s page rank. They do not benefit you. They only give links to Technorati tag search results if you want your users to get more information from other sites listed with Technorati on the same topic. If you want them to stay on your site first, then list your tags with site searches.

    Using target="_blank" is considered bad manners now for just about anything. I used to use it for all links for external sites, but found that this was just bad manners. It does nothing but open the link in a new window or tag. Search engines ignore it. A lot of people who want to open up more than one window or tab understand how to RIGHT CLICK > OPEN IN NEW TAB or WINDOW and use it. They don’t want websites to control their windows.

    Guidelines for tagging in Spanish? Hmmm. Good question. I think that those using the language tag service of their choice would use the “spellings” of the words as they are normally found, with the tilde and accents. You’ll have to check with them to see what their tag lists/heat clouds have to offer. Please let me know.

    SEO or page ranking is not measured by your tags, BUT links to tag search results can make those end resulting pages end up in search engines. I have done searches on Google and found one of my site search tag results pages listed with a listing of the posts related to that tag. That was cool. So it actually can help get more of your “pages” in search engines because the search engines “think” they are pages. As for page ranking, that’s more complicated. See How Google Ranks Websites for the specifics on how that works. And Do It Yourself Search Engine Optimization for more info.

    I hope this helps.

  19. Posted March 17, 2006 at 8:26 pm | Permalink

    I think what you’re saying about the tag being the word linked is not correct. After I posted my comment, I looked around some more and found Microformats Wiki. Here’s what I’m referring to:

    The linked page SHOULD exist, and it is the linked page, rather than the link text, that defines the tag. The last path component of the URL is the text of the tag, so

    <a href="http://technorati.com/tag/tech" rel="tag">fish</a>

    would indicate the tag “tech” rather than “fish”.

    I agree with you on the behavior of the people who know how to open a new tab/window and I’m also one of those who doesn’t like to be sent off somewhere else. So my idea for making tags open in a new window has been discarded.

    As for the different languages, I still haven’t found much info on that, but I’ll let you know when I know more. I did a search on Google using both cumpleaños and cumpleanos and it returned similar, although slightly different results. Then i searched for tag:cumpleaños and tag:cumpleaños and got exactly the same results, but with some differences in the order that were presented. After that, I did the same thing on Technorati and got totally different results on both the normal search and the tag search. So my preliminary conclusion is that tag searching using Technorati is much more sensitive than a Google search (and probably most other search engines).

    I’m a big fan this website. You’re a great writer/blogger. Thanks a lot for your help.

  20. Posted March 17, 2006 at 10:31 pm | Permalink

    That’s the issue involving clicking the link to the tag. There is a difference. The link needs to be a “real page”. That’s where the “should” comes into the picture. That helps get the tag page (search results) created with a tag such as https://lorelle.wordpress.com/tag/writing or https://lorelle.wordpress.com/index.php?s=writing into search engines which can follow this link to find a legitimate page, as can users. So not only your post gets into search engines, your valid tag page gets into search engines. All links are required by web standards to be valid, so this is where that comes from.

    Also, the idea of the link representing the tag just doesn’t hold. <a href="http://www.wordpress.org/support" rel="tag">WordPress Support Forum</a> is a valid link to a valid potential tag. People will search tag services for “WordPress Support Forum” and hopefully find it. The link doesn’t include “WordPress Support Forum” but it is still a valid link. The tag is the text. Does that help you understand this a little better?

    Again, let me emphasize that Technorati and other tag services are pinged when you publish your post on WordPress automatically. They come crawling through, find some tags with your categories and any other you have listed, and gather in ALL the content on your website, not just tags. When people use Technorati to search, they will find your site through the keywords as well as the tags depending upon if they do a general search (most common) or specific tag search. They still find your work.

    I find providing tags as navigational aids much more intuitive and helpful for my readers than saying “Hey, I got nothing here – go see what everyone else has on Technorati.” 😉 I adore Technorati and how they have changed the face of the web and Blogosphere, but I want my readers to stick around before they head over there. I think I got some good stuff here, too. Hee hee.

    Good research on the foreign language words. I’m sure that Google will not be as sensitive to the alphabet distinctions, so that is a great test. THANKS.

    Glad to help and thanks for keeping me informed.

  21. Posted April 19, 2006 at 10:00 am | Permalink

    hi, thanks for the tip on adapting the bookmarklet to keep visitors on your own blog instead of sending them away. But I still wanted technorati to pick it up. so i did a cross between your updates and ted ernst’s [ http://tedernst.com/wp/?p=171 ] and now have got a happy combination for me [ https://technoblahgy.wordpress.com/2006/04/18/tags/ ]

  22. Posted April 19, 2006 at 11:48 am | Permalink

    Okay, how many times to I have to scream this to make it clear? 🙂

    If you have a rel="tag" in your web page, no matter where it is, no matter who it links to (it can link to this blog for all it matters!), Technorati and any and all tag-searching search engines and web crawlers will find it. It doesn’t have to be be a link to Technorati. Google now searches tags, so should you have the link be to Google? Why not have three or four sets of links to the different tag searching services?

    All these tag searching services find your tags and all you need is the rel="tag" to be found. Does that make sense?

    Now, if you want to help your visitors find information offsite, like Technorati, Google, Yahoo, Raw Sugar, del.icio.us, Digg, or anywhere else on the Internet planet, then make the link to those locations to help your visitors, not you!

  23. Posted June 10, 2006 at 6:59 pm | Permalink

    If you want tags comma seperated, as to have multiple word tags, just change var tr=t.split(‘ ‘); to var tr=t.split(‘,’);

  24. Posted July 14, 2006 at 8:26 am | Permalink

    For loucypher’s Bookmarklet
    i added a small bit of code to support “grouping of words” like “Word Cup 2006” as one tag…

    posted here

    BookMarklet : Technorati Tags (upgrade)

  25. Posted August 11, 2006 at 12:16 am | Permalink

    Thanks Lorelle.

    Btw, my name is Rakesh and not “Bavra Mann” 🙂

  26. Posted August 11, 2006 at 7:28 am | Permalink

    Glad to know, and it is traditional to honor the name of the blog as part of the linking process, so how should I properly handle the two? Thanks again!

  27. Posted August 16, 2006 at 6:31 am | Permalink

    Hi Lorelle, i’m currently using utw tags, but many visitors do not know that they function as a rag search as well as the usual blogsearch. Do you know a way how to make it clear?

  28. Posted August 16, 2006 at 7:03 am | Permalink

    To designate which tags stay on-site and which lead to off-site locations, name them. I use Site Search Tags for those and Technorati Tags for those. Label them what they are.

    If you are wondering how to do the code with the The Ultimate Tag Warrior WordPress Plugin, then add the HTML before the PHP tags for UTW in your template files:

    <p><strong>Site Search Tags:</strong> <php....UTW code...</p>

    Is that what you are asking?

  29. Posted August 17, 2006 at 3:35 pm | Permalink

    I just used the Oddiophile’s Technorati Tags Bookmarklet tool on my new blog. I am very new at this and been learning a ton this year about SEO with my websites. So I was a little caught offguard when my tags appeared like this: http://www.justnewlistings.com/arlington-virginia-blog/2006/08/15/arlington-va-condo-prices-must-come-down/

    Is that the default– “+”s between each word in the phrase for how the tags appear? Or did I do something wrong? I appreciate any quick feedback. Where is a good blog site/URL to try and search for a phrase that matches one of my tags (clarendon+va) and see if it works?

    jay

  30. Posted August 17, 2006 at 3:54 pm | Permalink

    Jay: Part of learning how to do these things is to read the whole thing. The information on customizing your tags is spelled out very simply. There are two choices now: one with the plus (which is actually fairly common) and one without.

  31. Posted February 25, 2007 at 6:28 am | Permalink

    Thank you Lorelle. Your code’s saving me precious time everyday instead of writing those dang html codes for the tags daily.

  32. srinivasan
    Posted March 1, 2007 at 3:43 am | Permalink

    Nice its working!!!!!!!!!!!!!

  33. ali301
    Posted March 7, 2007 at 1:08 am | Permalink

    hi… great job

  34. Posted March 15, 2007 at 2:04 pm | Permalink

    Tagging is an important part of blogging. Thank you for sharing, Lorelle!

  35. ke2global
    Posted August 20, 2007 at 8:24 pm | Permalink

    I can’t wait to play with this thing….Oh yes yes yes. I am so pumped right now. I have a couple of WP.com blogs and blogger blogs. Oh you don’t even know the amount of time and relief you just saved me…Thank you!!! Wait till I tell my wife about this… lol

    Kenney Jr.

  36. Posted September 1, 2007 at 2:21 pm | Permalink

    Thanks for the article, really helpful

  37. Posted September 9, 2007 at 11:16 am | Permalink

    a very good day to you!

    this post rocks! i’m afraid i didn’t follow entirely, but that’s my fault – my learning curve is nothing to brag about 😉

    you did a very good job and i thank you from the bottom of my heart for making all this info user-friendly and free.

  38. Posted September 15, 2007 at 9:16 am | Permalink

    Thanks a lot for the bookmarklet! But how can I include the subscription and e-mail links you have added? Thanks!

  39. Posted September 15, 2007 at 10:11 am | Permalink

    Edit the bookmarklet and add them yourself, following the instructions included in the article. They are a natural function of your blog. Just find the links and add them. Play with it.

  40. Posted September 15, 2007 at 6:29 pm | Permalink

    i’ve tried and success. Now i used it in my own blog now.
    Thanks once more Lorelle

  41. Posted September 15, 2007 at 10:46 pm | Permalink

    Glad to help!

  42. Posted September 17, 2007 at 6:47 am | Permalink

    Great. I have been wondering about how to add tags for a while…

  43. Posted September 17, 2007 at 6:49 am | Permalink

    I always had digg tags at the end of mine, but i will add Technorati tags as wellnow i think!

  44. Posted September 17, 2007 at 8:52 am | Permalink

    You can add Digg, StumbleUpon, or even Technorati Tags to your blog, but do remember that they do different things. Digg and StumbleUpon and similar site submission sites take the linked to page as your recommendation to others. A Technorati tag takes the visitor off your blog and to Technorati’s site to find “related content”.

    If you want them to say around a while longer, use the site search option instead of sending them to Technorati where they may not find what they want.

    NOTE: WordPress will soon feature built-in tags in full versions of WordPress. We are waiting to see it here on WordPress.com. So this bookmarklet may soon be obsolete.

  45. Posted September 22, 2007 at 8:46 pm | Permalink

    Great Tagging tips…. thanks! 🙂

  46. Posted December 15, 2007 at 6:13 pm | Permalink

    wow cool nice article its very helpful thanks

  47. Posted January 16, 2008 at 7:58 am | Permalink

    Hi Lorelle,

    Just a quickie to be one of the heaven-knows-how-many to thank you for this post. Blinking Brilliant, and within a couple of hours I’ve got a tagging system set up which does exactly what I want it to do. I simply cannot thank you enough.

    Take Care

    Chris.

  48. Posted January 16, 2008 at 10:24 am | Permalink

    @ Chris Milton:

    A couple of hours? Huh? I wonder why it took so long. I’m lad it worked for you, but it should have been only a few minutes. If there is a way to speed this process up, please let me know. And thanks!

  49. anthonydazet
    Posted January 30, 2008 at 12:56 am | Permalink

    The above contents are very useful! Thanks for the Wonderful Information

  50. Posted March 12, 2008 at 7:33 am | Permalink

    Still trying to get it to work! But will try again later, thanks…

  51. Posted April 17, 2008 at 4:27 am | Permalink

    Thanks for an informative posts. I was quite new in blogging and I am looking on how and why people use tags on their blogs. Now I’d say I am a bit enlightened by its use. Anyway, I am off for more reading and researching about blogging. Just thought I’d say thanks to your great tip on tagging.

  52. richarlm
    Posted March 16, 2011 at 12:08 pm | Permalink

    Is there a bookmarklet like this one or something similar that can be used to have categories only search my WordPress.com blog? I’d like to use both categories and tags and have both only navigate through my blog.

    Thanks.

    • Posted March 16, 2011 at 1:03 pm | Permalink

      You can modify this one to include categories, but categories are automatically generated by the WordPress Theme you choose.

  53. hurtig lån
    Posted January 10, 2013 at 8:37 pm | Permalink

    Heya this is kind of of off topic but I was wanting to know if blogs use WYSIWYG editors or if you have to manually
    code with HTML. I’m starting a blog soon but have no coding skills so I wanted to get guidance from someone with experience. Any help would be greatly appreciated!

    • Posted January 11, 2013 at 2:22 am | Permalink

      Depends upon the publishing platform, but today everything is WYSIWYG if you choose to use that feature. Coding skills have not been necessary for over ten years.


97 Trackbacks/Pingbacks

  1. […] Categories versus Tags – What’s the Difference and Which One? (explains that tags are not a replacement to categories, they are complementary…great, realistic explanation) Adding Technorati Tags to WordPressMU Sites (blog posts pointing to related posts at Technorati tags, and pointing to related posts within your blog) A Tagging Bookmarklet for WordPress and wordpress.com Users (making the bookmarking process easier) […]

  2. […] I’ve started using a bookmarklet I found at Lorelle’s blog to add my Technorati tags to the bottom of the posts. Here’s how to get your own: […]

  3. […] UPDATE: Lorelle left a more convenient way in the comments. […]

  4. […] I have talked a lot about how to put tags on your posts, including how to create a custom bookmarklet to add tags to your wordpress.com or WordPress posts, and the benefits of tagging, as well as the difference between tags and categories, but what I haven’t talked about is the issues involving tagging from the end user point of view. […]

  5. […] Un ricerca su google “site:wordpress.com technorati” mi ha portato su un post del blog di Lorelle. […]

  6. […] I just read A Tagging Bookmarklet for WordPress and wordpress.com Users on Lorelle’s blog. She uses Andrew Beacock’s Oddiophile’s Technorati Tags Bookmarklet to add Technorati Tags. Then I thought, why don’t use a Greasemonkey userscript? […]

  7. […] OK, so it took me a minute but I figured it out.  If you read my last post, I was trying to figure out how to get the uber-cool FireFox extension Performancing to add technorati tags to my posts, as I’d read it was capable of doing (and since this ‘feature’ is noticeably lacking  on WordPress.com, although Lorelle has a great post about a tagging bookmarklet for wordpress.com users) […]

  8. […] Lorelle on WordPress » A Tagging Bookmarklet for WordPress and wordpress.com Users (tags: blog bookmarklets howto del.icio.us tagging Tools WordPress Tags) […]

  9. […] With Technorati tags.  Reading Lorelle’s blog I found the post about tagging. […]

  10. […] From this article on Lorelle’s site I have managed to create the Javascript required to post Technorati Tags and Site Search tags on WP.com and am just gonna try simple site search tags on here: […]

  11. […] Note: Check out A Tagging Bookmarklet for WordPress and WordPress.com users for more updated information. […]

  12. […] By the way, thanks to Lorelle for the technorati tag post that helped to implement it here to you a big GRACIAS   […]

  13. […] Well, this was kind of a chain. I read it on the “Ubuntus – The Newbie’s Blog” about tagging on Lorelle’s blog here. […]

  14. […] Lorelle on WordPress » A Tagging Bookmarklet for WordPress and wordpress.com Users theoretically makes adding Techorati tags to posts easy as pie. I haven’t tried it yet. Stay tuned. (tags: extension tags blog) […]

  15. […] Tagging is an inherent part of blogging. You not only write but also tell people its associations. This is pretty convenient for the readers, but not very convenient for me as a blogger. Initially, including the tags was manual, then Lorelle’s Tagging Bookmarklet article showed a better way of doing it. It also points to a couple of GreaseMonkey scripts for Mozilla Firefox users. […]

  16. […] Probando cosillas nuevas por la red me he encontrado este “etiquetador” tanto para WordPress como para wordpress.com y me he dispuesto a intentar usarlo para ver cual es el efecto que produce. Technorati Tags: Technorati, Beta, Blogs […]

  17. […] A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  18. […] WordPress marks categories automatically as tags. This is great as it instantly adds tags to your post, but not all categories are worthy of being tagged. For instance, my category, Blog Babble is a lousy tag. Who is going to search for “blog babble”? No one. But you instantly understand that you will find posts within that category related to blogging. It’s a synonym for “talking about blogs and blogging”. Search engines and tagging services don’t deal well with synonyms. This is just one example of the many problems with tags. I like my few neat categories and so I manually add tags to the bottom of my posts. […]

  19. […] Se goes on to answer that last question, providing the pros and cons of using tags. The other article I want to bring to your attention, is her excellent post on efficient techniques you can use to insert tags into your posts. To know how you go about, you should read “A Tagging Bookmarklet for WordPress and wordpress.com Users“. […]

  20. […] If you like that page, there is Technorati Tools, which includes Browser Plugins, Bookmarklets, and more links–this time tools from users, including Lorelle VanFossen and David Smith, on tools for using Technorati to its fullest. […]

  21. […] How do I add Technorati tags to my WP.com blog? Lorelle gives us an excellent method of doing this. […]

  22. […] You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site. Leave aReply […]

  23. […] testing a mix between oddiophile, lorelle and ted ernsts bookmarklets for tagging. i wanted technorati to pick up the tags – ted ernst, not go away from wp – lorelle and the original script – oddiophile […]

  24. […] A Tagging Bookmarklet for WordPress and wordpress.com Users illustrates just how to edit your own bookmarklet to suit your needs. […]

  25. […] Here’s a great blog promotional tool, via the Technorati Tools page — from the Free Hogg Blog: Technorati tags bookmarklet. (it looks like Hogg might have gotten it from Lorelle, but I’ll leave you to do your own detective work further back than that.) […]

  26. […] Jacob Appelbaum’s blog on Hurricane Katrina is an amazing read, but it also features an interesting use of categories as tags. I’ve talked about the difference between categories and tags, the limitations of using categories as tags, how to manually add Technorati and search tags to wordpress.com, and an even easier method for adding tags to your WordPress.com blogs called “A Tagging Bookmarklet for WordPress and wordpress.com Users“. Jacob’s site pushes the categories as tags feature to the limit, making the categories really work as tags. […]

  27. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  28. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  29. […] Until WordPress.com adds something like the Ultimate Tag Warrior, which adds a tag input form onto the Write Post Panel and then permits weighted tag clouds (tag heat maps) or tag lists within the WordPress Theme layout, you can still use the option of manually adding tags to your posts and not giving into the competition of having your category “seen” on the WordPress.com category/tag cloud. […]

  30. […] If you want to get more tag-oriented on your site and help your users navigate your site better, check out this great primer and also see the articles on how to put tags on your posts, how to create a custom bookmarklet to add tags to your wordpress.com or WordPress posts, the difference between tags and categories, and the problems with tags and tagging to better understand how this all works. […]

  31. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  32. […] My post on A Tagging Bookmarklet for WordPress and WordPress.com Users has been added to Technorati’s Tool List, a list of tools that help people add Technorati tags to their blogs. […]

  33. […] While reading it I came across an article on Tagging and using bookmarklets to help with links to Tecnorati . While I could not find the bookmarklets described in the article or get it working with the Linux system I started a little search from the links that were on that article. What I came across was a Technorati Tools section. As part of it I found a nice bookmarklet that I could use to create Technorati links. […]

  34. […] Try your search from your WordPress Administration panel Manage > Posts panel. That searches the database of posts not the generated posts which includes the sidebar. You will have to manually count the results as WordPress doesn’t return a count of how many posts were found with that word or phrase within them. If you use tags on a per-post basis manually, as I do with this blog, it will find all of those, so I recommend that you really look manually to see if you are tagging your posts with keywords used within your posts or just tag words you “think” the post relates to. Which was to be another challenge in the future. […]

  35. […] How do I add Technorati tags to my WP.com blog? Lorelle gives us an excellent method of doing this. […]

  36. […] For others, technorati tags bookmarklet is a Firefox bookmarklet to tag ur blog posts. Developed by Lorelle and […]

  37. […] My Technorati Tag Bookmarklet for WordPress and WordPress.com Users is a popular and easy to use method of adding tags to your WordPress and WordPress.com blogs without WordPress Plugins or much fuss. Okay, a little fuss. […]

  38. […] A Tagging Bookmarklet for WordPress and wordpress.com Users by Lorelle VanFossen. […]

  39. […] The article I wrote on how to easily add tags to your WordPress and WordPress.com (or any) blog continues to be one of the most popular articles I’ve written. As does the first article I wrote about using The Ultimate Tag Warrior WordPress Plugin with full version WordPress blogs. […]

  40. […] How do I add Technorati tags to my WP.com blog? Lorelle gives us an excellent method of doing this. […]

  41. […] In order to help Technorati index your posts correctly is recommended to add tags to the bottom of each post. I’ve found a need Technorati tagging tool. Its a simple javascript bookmarklet that generates the required code for you to copy and paste in your blog. You can find it and a full guide at Lorelle on WordPress […]

  42. […] A Tagging Bookmarklet for WordPress and WordPress.com Users « Lorelle on WordPress […]

  43. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  44. […] Navegando pela web descobri um script desenvolvido originalmente pela Lorelle para adicionar tags aos posts nos blogs WordPress. Originalmente o script era apenas um bookmarklet com algumas limitações. […]

  45. […] Toda ayuda para agregar tags a los post es apreciada y desde Lorelle supe del script (bookmarklet) de Andrew Beacock’s. […]

  46. […] Wow. I recently bumped into this article entitled “A Tagging Bookmarklet for WordPress and WordPress.com Users” by Lorelle VanFossen, which basically helps automatically create HTML tags for those Technorati and Site Search tag-links below each post. These tags help Technorati understand each article better and place them to their proper topics. […]

  47. […] To address the Technorati issue I did a search on Google add found an article over at Lorelle’s site that had a JavaScript driven bookmark that create the links for you and then you just pasted them into your HTML in your post (See Lorelle’s post – A Tagging Bookmarklet for WordPress and WordPress.com Users). […]

  48. […] I had no access to my favorites or bookmarks. I had no access to the tagging bookmarklet I use for my tags and signature on every WordPress.com post I write. […]

  49. […] podiamos escrever o html ah mao, mas era uma trabalheira. tinha de haver maneira mais simples. a procura eh feita e parece que a autoridade na materia eh lorelle vanfossen, que explica tudo muito bem explicadinho, no seu cantinho. […]

  50. […] Sto giocando con i Tag di WordPress e di Technorati, seguendo le istruzioni del blog di Lorelle. […]

  51. […] Follow any comments here with the RSS feed for this post. Post a comment or leave a trackback: Trackback URL. « Fon forum boards down since Nov 62006 […]

  52. […] and Lorelle Van Fossen’s Site Search Tags Bookmarklet at […]

  53. […] Thanks to the help of Lorelle I was able to insert the “Oddiophile’s Technorati Tags Bookmarklet” into my webbrowser and edit it sufficiently. This enables me tagging my posts in a simple and personalized manner – for a really easy lecture on how to do it, see Lorelle’s post. Thus this blog gains two improvements: […]

  54. […] Tagging is an inherent part of blogging. You not only write but also tell people its associations. This is pretty convenient for the readers, but not very convenient for me as a blogger. Initially, including the tags was manual, then Lorelle’s Tagging Bookmarklet article showed a better way of doing it. It also points to a couple of GreaseMonkey scripts for Mozilla Firefox users. […]

  55. […] blogging platform, and WordPress has a couple plugins available: Bunny’s Technorati Tags and Oddiophile’s Technorati Tags Bookmarklet. If your blogging service doesn’t offer Technorati, you have other options. The one I […]

  56. […] WordPresswordpress.com桼ѥ֥åޡåԡLorelle VanFossen. […]

  57. […] on WordPress has lots of useful posts and I found A Tagging Bookmarklet for WordPress and WordPress.com Users. That post took me to Technorati Tags Button where I found a solution that works nicely, see bottom […]

  58. […] Bookmarklet for Firefox (IE 7 […]

  59. […] tags, so I add site search tags to every blog post with a Bookmarklet I developed called the Tagging Bookmarklet for WordPress and WordPress.com Users. Some social networking and site submission services also provide bookmarklets to add to your […]

  60. […] I’m done with all this exhausting tab jumping, I use the Tag Bookmarklet for WordPress and WordPress.com Users, a Javascript bookmarklet I developed to add tags manually to my WordPress.com blog (WordPress.com […]

  61. […] A Tagging Bookmarklet for WordPress and WordPress.com Users « Lorelle on WordPress Instructions for getting the “Oddiophile’s Rather Fab Technorati Tags Bookmarklet” to work in WordPress.com. (tags: web2.0 tags Tagging wordpress) […]

  62. […] That’s it! Happy tagging! If you use WordPress (especially WordPress.com), and want to play with the code in order to customize the output, I suggest you read Lorelle VanFossen’s thorough post on this. […]

  63. […] A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  64. […] A Tagging Bookmarklet for WordPress and WordPress.com Users helps you add a tag block and signature, like I have on this blog, to your blog within the post content area. […]

  65. […] SimpleTags – A WordPress Plugin for generating Technorati Tags Add-Meta-Tags WordPress Plugin WordPress: Lista de plugins no recomendados Catcloud Wordress Plugin Updated for WordPress 2.1 A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  66. […] a agregar un trackback y tags [*] a este post para ver que […]

  67. […] good to blog at the dot com, but temporarily abandoned the idea while I’m figuring out how to build a tagging bookmarklet. Of course, when I saw the Sandbox theme it looked like a real pile of […]

  68. […] in giro per la rete ho trovato il blog di Lorelle che fornisce una serie di trucchi per poter applicare i tag technorati sui nostri blog senza dover […]

  69. […] A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  70. […] (like me!) 14 09 2007 Here is a really simple solution to a seemingly complex problem. Lorelle’s way is way too G-(R)EEK-y for me! So I got a little […]

  71. […] penggunaan Tag pada posting (hihihi aku udah pake ini sebelumnya lho, pake kaya punya Lorelle), disamping yang biasanya dengan bangga kita pergunakan yaitu […]

  72. […] a long time, I’ve been using a manual browser bookmarklet with my site search tags, and I’m not going to go through and remove them. If I like how these look and work, […]

  73. […] with each other) or as I’ve been doing since the switch to (and from!) WordPress.com, using a bookmarklet. If I have time I will go back through old posts and convert them to the new tagging system. […]

  74. […] For WordPress.com bloggers who want tags, but want to control where they link, you can not use the built-in tag feature and use something like the Tagging Bookmarklet for WordPress and WordPress.com blogs. […]

  75. […] blogging platform, and WordPress has a couple plugins available: Bunny’s Technorati Tags and Oddiophile’s Technorati Tags Bookmarklet. If your blogging service doesn’t offer Technorati, you have other options. The one I […]

  76. […] reading it I came across an article on Tagging and using bookmarklets. The article is an amazing tutorial on how to create searches for your site if you use wordpress […]

  77. […] A Tagging Bookmarklet for WordPress and WordPress.com users […]

  78. […] Tips for WordPress.COM users (who can’t add javascript or screw around with their templates): A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  79. […] SimpleTags – A WordPress Plugin for generating Technorati Tags Add-Meta-Tags WordPress Plugin WordPress: Lista de plugins no recomendados Catcloud Wordress Plugin Updated for WordPress 2.1 A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  80. […] I do so at the bottom of most of my blog posts using a JavaScript Browser Bookmarklet described in A Tagging Bookmarklet for WordPress and WordPress.com Users. The JavaScript creates a set of links with tag words that link to a site search of my […]

  81. […] using the following re-hashed bookmarklet (thanks to Lorelle and Rakesh) in order to put them in my […]

  82. […] to move from depending on categories to tags, implementing site search tags at the bottom of posts, using this. This will be difficult. My desk isn’t piled high with papers and books in this apartment […]

  83. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  84. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  85. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  86. […] can also manually add a copyright notice to your blog posts, as I do on this blog, but a WordPress Plugin makes sure you never […]

  87. […] explain in great detail how I do this using a browser bookmarklet script in “A Technorati Tag Bookmarklet for WordPress and WordPress.com Users“. Basically, I use the bookmarklet to create a list of site search tags for each article, […]

  88. […] Recently, ArchaeoAstronomy come up with a javascript bookmarklet for social bookmarking links using the same technique I developed with A Tagging Bookmarklet for WordPress and WordPress.com Users. […]

  89. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  90. […] links in WordPress.com link only to other WordPress.com blogs, not your content, unless you add a manual list of site search tags as I do. Still, these links don’t turn up in my stats very often, so who is using my site […]

  91. […] of WordPress and controlled through an Options tab. WordPress and WordPress.com users can also add tags manually in a variety of ways such as from within links in the content or in a list at the end of a post. […]

  92. […] A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  93. […] A Tagging Bookmarklet for WordPress and WordPress.com Users […]

  94. […] of most popular posts I wrote is on A Tagging Bookmarklet for WordPress and WordPress.com Users, which offers a step-by-step process of how to create the tags and signature you find at the bottom […]

  95. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  96. […] A Tagging Bookmarklet for WordPress and wordpress.com Users […]

  97. […] bookmarklets help to create my site search tags at the bottom of my posts, and another one creates the social bookmarking submit links for […]

Post a Comment

Required fields are marked *
*
*