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ı
Ekleyeceğiniz Kod :
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");
saolun galiba wordpress url için php kodu $url şeklinde ben bunu konu içine ekleyeceğim ek sidebara
[shorten]$url[/shorten]
diye eklesem çalışacaktır umarım temam kodlansın deneyeceğim