PHP 自动获取wordpress帖子的简短网址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 自动获取wordpress帖子的简短网址相关的知识,希望对你有一定的参考价值。

/* add the following codes to functions.php file: */

function getShortUrl($url) {
  $tinyurl = file_get_contents("API-URL".$url);
  return $tinyurl;
}

// remember to replace API-URL in the second line of the above codes with one of the urls mentioned on the comments

/* On your single.php file, paste the following within the loop: */
<?php
$surl = getShortUrl(get_permalink($post->ID));
echo 'Short Url for this post: <a href="'.$surl.'">'.$surl.'</a>'
?>

以上是关于PHP 自动获取wordpress帖子的简短网址的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress自定义帖子类型:帖子网址中的POST ID

Wordpress 5.2 YouTube 视频自动嵌入帖子不起作用

在 Wordpress 中为自定义帖子类型添加附加页面

在functions.php中获取wordpress帖子ID

PHP 获取WordPress中的最新帖子

PHP WordPress:获取给定类别的帖子数