you are in: codestackercodes [RSS] → tag: tinyurl [RSS]

short url in wordpress with tinyurl Delicious Email

paste the function in function.php file and call in you template with:

<?php echo ‘’.getShortUrl(get_permalink($post→ID)).‘“>short url’; ?>

show/hide lines
   1  function getShortUrl($url) {
   2    $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
   3    return $tinyurl;
   4  }
created by leozera — 26 April 2009 — get a short url — tags: php tinyurl wordpress embed