Wordpress blog içine http://j.mp entegre nasıl?

1 Cevap php

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?

1 Cevap

Looks like j.mp is a mirror of bit.ly
According to bitly API:

http://api.bit.ly/shorten?version=2.0.1&longUrl=http://cnn.com&login=bitlyapidemo&apiKey=R_0da49e0a9118ff35f52f629d2d71bf07

Ben fonksiyonu getunuUrl değiştirmek (veya yeni bir tane ekleyin) omuz:

function getunuUrl($url) {
    $unuurl = file_get_contents("http://api.bit.ly/shorten?version=2.0.1&longUrl=".$url."&login=bitlyapidemo&apiKey=R_0da49e0a9118ff35f52f629d2d71bf07");
    return $unuurl;
}

Giriş değiştirmeyi unutmayın & etmeyin Kendi için apiKey.