Blogs hosted on wordpress.com get automatic link shortening via http://wp.me/, but for those who prefer to seek out our own hosting solution is there a plugin that will, upon publishing a new post/page, make an api call to bit.ly (or other such service) store the resulting url and return it from wp_get_shortlink()
?
I have searched without success. Any help would be appreciated.
There’s this plugin:
http://wordpress.org/extend/plugins/wp-bitly/
if you install the wordpress.com stats plugin on your self hosted wordpress blog, you will have the option to have wp.me shortlinks
You could also add something like this to your functions.php to add a short link (powered by tinyurl) to each post or page you have:
}
add_filter(‘the_content’, ‘shortLink’);