Benim Wordpress Blog Şu anda entegre http://U.nu url-kısaltıcı kullanıyorum.
Bunun için functions.php de var
function getunuUrl($url) {
$unuurl = file_get_contents("http://u.nu/unu-api-simple?url=".$url);
return $unuurl;
}
ve benim post.php içinde
<?php $uurl = getunuUrl(get_permalink($post->ID));
echo '<a href="'.$uurl.'">Short Url</a>' ?>
Ben aynı şekilde j.mp entegre etmenin bir yolunu bulamıyorum. Bana yardım edebilir herkes?