RevCanonical 1.2, Customise your link tag plus a little more
posted by Duncan at 10:33 am on April 23rd, 2009I’ve made a few updates to the RevCanonical Wordpress plugin I built. These updates add a bit of extra functionality, and also allowed me to tidy up the documentation, so that people know what they’re getting.
First update, is the ability to customise how the link tag is constructed within the head of your page. This is due to the large amount of people who have contacted me, asking why I choose to use rev=canonical and not rel= shorturl, rel=shorturl or rel=short_url etc. As I told them, the reason I chose rev=canonical was to be honest simply because I liked it, and many of my peers were already using this method on their sites. Simple.
So currently with the plugin you get this out of the box:
<link rev="canonical" type="text/html" href="http://your-domain.com/p12p" />
but you could customise it to be like this:
<link rel="shorturl" href="http://y-doma.in/p12p" />
The reason for this extra customisation is to try and stop people being distracted by the what attribute should I use conversation, and start getting them hosting their own short links they can use. This at least starts solving one problem. When a general consensus, or in deed a standard appears about the attributes, you can simple update and you’re good-to-go.
At the moment the only place you can see the shortened url is either by looking in the source, or using a bookmarklet like the one Simon wrote. I guess I could of injected the url into the admin interface somewhere, but I generally don’t want to see it. The idea is, it’s there for machines to see if they need to, and if I really need to pass it around I’ll just use the bookmarklet.
If you want more flexibility, I have added a of a couple of tags you can use in your templates. These simply let you display the shortened url for a specific post.
# echo the shortened url to the screen <?php get_revcanonical_shorturl($post_id); ?> # assign the shortened url to a variable <?php $url = revcanonical_shorturl($post_id); ?>
Oh and finally, just a reminder that this plugin plays well with the TweetMe plugin I wrote that tweets to Twitter.com when you publish a post, and will check to see if you have the RevCanonical plugin installed. If you do, it will use your own shortened url instead of the bit.ly version.



