// Main Function

function shorten_url($url){

$siteurl="http://adl.pw"; //
$apikey="rzsWdtYW6bgZ";

if($apikey && $siteurl){
$short=@file_get_contents("$siteurl/api?api=$apikey&url=".strip_tags(trim($url)));
$short=json_decode($short,TRUE);
if(!$short["error"]){
return $short["short"];
}
}
}
// Shortcode function
function shortcode_shorten_url($atts,$content){
return shorten_url($content);
}

// Register Shortcode
add_shortcode("shorten", "shortcode_shorten_url");


eklediğim kod budur.