在我的Wordpress博客中,我目前正在使用集成的http://U.nu网址缩短器。
为此我已经进入了functions.php
function getunuUrl($url) {
$unuurl = file_get_contents("http://u.nu/unu-api-simple?url=".$url);
return $unuurl;
}
和我的post.php
<?php $uurl = getunuUrl(get_permalink($post->ID));
echo '<a href="'.$uurl.'">Short Url</a>' ?>
我找不到以同样的方式集成j.mp的方法。有人能帮帮我吗?
答案 0 :(得分:0)
看起来j.mp是bit.ly的镜像 根据{{3}}:
http://api.bit.ly/shorten?version=2.0.1&longUrl=http://cnn.com&login=bitlyapidemo&apiKey=R_0da49e0a9118ff35f52f629d2d71bf07
我应该更改函数getunuUrl(或添加一个新函数):
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;
}
不要忘记更改登录&amp; apiKey to your own。