|
|
Can I create a Technorati "favorites" link?In the interest of gaining more visibility for my new cat blog, I want to have a link on the blog itself that will easily let people "favorite" it on Technorati. How do I do that? Great idea! In fact, I'll demonstrate how to create a "favorite me" button for Technorati by using my own weblog as a demonstration, and perhaps we can mutually favorite each other as a way to help jointly promote our writing? Thing is, there are lots of ways you can use the system -- and even try to game the system -- to gain visibility and traffic, but the very best way remains to produce quality original content. Just as there's no substitute as a musician for musical ability, there's no substitute in the world of blogging for actually taking the time to write interesting and informative entries that are relevant and engaging for your target audience and market segment. Once you have that moving along, then it is time to do online promotion, and making sure you're visible in popular blog search engine Technorati is definitely a good move. So, so enough chatting. Let's dig into some code! The first step is to go to Technorati and find your own weblog. You can most easily do this with a search. I'll search for "dave taylor tech support": ![]() By default, it shows you matching blog entries, but you want to click on the "blogs" tab, which results in: ![]() That's what we want, and this blog is listed as the top match. Makes sense. The key element we want here is the little red "fave" link. Right click or option click on that link (PC or Mac, respectively) and choose "Copy Link" and you'll end up with something like: http://technorati.com/faves/?add=http%3A%2F%2Faskdavetaylor.com
That's the URL for favoriting this weblog in Technorati. That's what you want (albeit for your own weblog), but let's have a bit of fun with it before we wrap up. One thing to know is that you can safely convert the ugly "%3A%2F%2F" into "://", which makes the URL quite a bit more readable: http://technorati.com/faves/?add=http://askdavetaylor.com
Now let's pour it into a basic HTML link: <a href="http://technorati.com/faves/?add=http://askdavetaylor.com">Favorite me on Technorati!</a>
Rudimentary, but it works: Favorite me on Technorati! Better would be to grab the graphic too, which proves to be pretty tricky because Technorati's using some CSS to get the visual element, not a specific graphic. However, that's easily remedied by just grabbing it with a screen capture program and trimming the resultant graphic down to make a graphical button anyway. Like this: Put it all together, copy the graphic to your own server, and now you can easily add a simple little button to your blog template like this: Try it, favorite me, and, well, I can always do with more visibility too. Helps keep the traffic flowing and the lights on in our offices! Here's the code for the button above too, in all its HTML glory: <a href="http://technorati.com/faves/?add=http://askdavetaylor.com"><img src="http://www.askdavetaylor.com/1-blog-pics/technorati-faves.png" alt="Add AskDaveTaylor to your Favorites list on Technorati" border="0" /></a>
One more tweak: how about a "form" button for this task instead, since we know exactly what data we need to send? Here's the code: <form method="get" action="http://technorati.com/faves/">
<input type="submit" value="Click here to Favorite me on Technorati" /> <input type="hidden" name="add" value="http://www.askdavetaylor.com" /> </form> Let's test it: Again, click on it to see what happens and help me out a wee bit while you're at it! Good luck
More Useful Blogs and Blogging Articles:
✔ Get my shopping cart plugin to work with WordPress?
We've put in a shopping cart for a client that's not working, and we need some help! The cart is currently using the...
✔ Embed an audio player on a blog or web page?I have some mp3 audio files I've recorded and would like to have people who visit my site be able to listen to...
✔ Can I write a guest review for AskDaveTaylor.com?Hi Dave. I'm a big fan of your site and love that you're doing so many reviews now. I've noticed, however, that there...
✔ Change author on WordPress blog post?I have two accounts set up for my WordPress blog and I'd like to be able to have all my posts from a...
✔ How do I restructure my Wordpress blog without losing SEO?I have a wordpress blog that was using categories in the url structure like this: /category_name/post_name/ Then I had read somewhere that if...
Let's stay in touch!
Sign up for my weekly AskDaveTaylor Newsletter and you'll receive even more tech and gadget help
right to your inbox, along with exclusive news and industry updates. It's good stuff. I promise!
Categorized:
Blogs and Blogging
(Article 7861,
Written by Dave Taylor)
Tagged: blog traffic, technorati, technorati favorites Previous: How do I eject a USB disk drive? Next: How can I find unread messages in Google's Gmail? Reader Comments To Date: 3Dette said, on April 15, 2008 9:54 PM:
Looove it! Thanks for sharing! kenwooi said, on May 3, 2010 10:38 AM:
application error at the moment, right? =/
I do have a comment, now that you mention it!Check This Out Too... |
Recent Entries
Look for Answers
Recommended
All Our Categories
Apple iPad Help
Articles and Reviews Auctions and Online Shopping Blogs and Blogging Building Web Site Traffic Business and Management Computer and Internet Basics d) None of the Above Facebook Help Google Gmail Help Google Plus Help HTML, JavaScript and Web Site Programming Industry News and Trade Shows iPhone and Cell Phone Help iPod, Sony PSP and MP3 Player Help Kindle Fire Help Mac OS X Help Pay Per Click (PPC) Advertising Pinterest Help Search Engine Optimization (SEO) Shell Script Programming Tech Support Video Help The Writing Business Twitter, LinkedIn and Social Network Help Unix and Linux Help Video Game Tips and Help Windows PC Help Find Me on Google+ ADT on G+ |
Great Post Dave - Like I said in my Digg description...I used to go to Google for all my "Tech Support" Questions until I came across this site.
I'm currently setting up my blogs and your website is the first place I look when I come unstuck..
Cheers,
Kel