在WORDPRESS中创建帖子的小URL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WORDPRESS中创建帖子的小URL相关的知识,希望对你有一定的参考价值。

Creates a tiny url for posting on twitter etc.
  1. //place in functions.php in theme folder
  2. <?php function getTinyUrl($url) { $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url); return $tinyurl; } ?>
  3.  
  4. //call the function on the page
  5. <a href="http://twitter.com/home?status=Currently reading <?php the_title(); ?> : <?php $turl = getTinyUrl(get_permalink($post->ID)); echo $turl ?>" title="Tweet this">Twitter link</a>

以上是关于在WORDPRESS中创建帖子的小URL的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WordPress 中创建响应式图像轮播和幻灯片自定义帖子类型内容

在 Wordpress 中创建自定义 URL

如果数组不存在,则从现有 URL 将数组插入到页面链接 url 中创建数组,将默认值插入到页面上的 href 链接中

如何在 Wordpress 中创建框架以便在不更改 URL 的情况下将文章加载到首页?

我的自定义帖子类型 URL Slug 中缺少连字符/破折号(-)

在WordPress中使用add_shortcode()在主页中创建内容部分