添加Tinyurl链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加Tinyurl链接相关的知识,希望对你有一定的参考价值。
Generate The Tiny URL to add to any post
/* Generate The Tiny URL - Add to your functions.php file */ function getTinyUrl($url) { $gettiny = file_get_contents("http://tinyurl.com/api-create.php?url=".$url); return $gettiny; } /* Call The Tiny URL - Add to your single.php file within the loop */ <?php $tiny = getTinyUrl(get_permalink($post->ID)); echo 'Tiny Url: '.$tiny.'' ?>
以上是关于添加Tinyurl链接的主要内容,如果未能解决你的问题,请参考以下文章
535. Encode and Decode TinyURL - LeetCode