Fiber Türkiye adlı üyeden alıntı
http://tinyurl.com/api-create.php
sizin kodunuzu alabilir miyim? burada ki gibi
Selamlar tekrardan bizim sistemimiz daha stabil ve kolay ayrıca wordpress entegreside basittir , adl.pw de üyelik açıktan sonra ayarlar kısmınızda APİ kodunuz olacak , aşağıdaki kodları kullandığınız temanın functions.php içerisine ekliyorsunuz hepsi bukadar girdiğiniz tüm linkler otomatik kısaltılıyor.
Kullanımı
[shorten] LİNK [/shorten]
Ekleyeceğiniz Kod :
// Main Function
function shorten_url($url){
$siteurl="http://adl.pw"; //
$apikey="KENDİ APİ KODUNUZ BURAYA";
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");