geçiş süresi 3-4 saniye ve geçişte reklamlar biraz daha az olsa çok daha güzel olacakmış
Talebe göre kullanım seviyesine göre ilerde daha güzel olacaktır yorum için tşk ;)
Link Kısaltma ve Para Kazandırma Servisi (Wordpress Entegreli) |
83 Mesajlar | 9.727 Okunma |
// 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");