VPS参考、测评、推荐
分享你关注的VPS主机优惠信息

WordPress实现了博客文章标题到自定义URL的链接(WordPress添加链接)。

WordPress实现了博客文章标题到自定义URL的链接(WordPress添加链接)。

相信很多博主都过将wordpress文章标题到用户自定义URL地址的需求。当文章时,他们不会直接访问文章详情页,而直接访问共享链接的网页,就像微博。为了达到这个效果,你可以使用插件:页面链接到或者 Post重定向,但为这个小功能再安装一个插件就有点小题大做了。

WordPress实现了博客文章标题到自定义URL的链接(WordPress添加链接)。

模式1:

其实我们也可以在文章中添加字段,在主题的functions.php中添加以下代码:(文件:网站根目录/-content/themes/主题名/functions.php)。

/** * WordPress文章标题链接到站外链接*/function link _ format _ URL($ link,$ post){ if(has _ post _ format(‘ link ‘,$ post)&;& ampget _ post _ ($ post-& ;ID,’ LinkFormatURL ‘,true)){ $ link = get _ post _ ($ post-& ;ID,’ LinkFormatURL ‘,true);} return $ link}add_filter(‘post_link ‘,’ link_format_url ‘,10,2);模式2:

依次打开wordpress背景外观/主题编辑器/模板功能(functions.php),添加以下代码:

/** * WordPress文章标题链接到站外链接*/function link _ format _ URL($ link,$ post){ if(has _ post _ format(‘ link ‘,$ post)&;& ampget _ post _ meta($ post-& gt;ID,’ LinkFormatURL ‘,true)){ $ link = get _ post _ meta($ post-& gt;ID,’ LinkFormatURL ‘,true);} return $ link}add_filter(‘post_link ‘,’ link_format_url ‘,10,2);使用:

新建一篇wordpress文章时,在文章末尾的字段中选择名称:LinkFormaturl,取值:输入你希望文章标题的url地址,正常发布文章即可上述功能。

:WordPress实现了博客文章标题到自定义URL的链接(WordPress添加链接)。 https://vps.caogenba.com.com/110919.html

赞(0) 打赏
未经允许不得转载:草根吧VPS_最新VPS信息参考 » WordPress实现了博客文章标题到自定义URL的链接(WordPress添加链接)。
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址