如何在同一页面底部添加文章页面网址?

发布于 2024-11-08 12:21:24 字数 271 浏览 0 评论 0原文

我在 wordpress 中创建了一个文章目录。我想在同一页面的末尾添加文章网址。 如何编写该代码。 例如 http://ezinearticles。 com/?摩托车音频---配件带头盔和扬声器&id=6279817
这里在最后给出了 url。 谢谢。

I started an article directory in word press. I want to add article url at the end of the same page.
How to write that code.
for example http://ezinearticles.com/?Motorcycle-Audio---Accessorize-With-A-Helmet-With-Speakers&id=6279817
here at the end url is given.
thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘过的浮云 2024-11-15 12:21:24

有几个选项:

WordPress 的方式是使用 get_permalink($post_id)

<?php
global $post
$link = get_permalink($post->ID);

或者您可以使用此处显示的 REQUEST_URI: http://wordpress.org/support/topic/get-current-page-url

A few options for that:

The WordPress way would be to use get_permalink($post_id)

<?php
global $post
$link = get_permalink($post->ID);

or you could use the REQUEST_URI shown here: http://wordpress.org/support/topic/get-current-page-url

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文