我在word press中创建了一个文章目录。我想在同一页的末尾添加文章网址。
如何编写该代码。
例如http://ezinearticles.com/?Motorcycle-Audio---Accessorize-With-A-Helmet-With-Speakers&id=6279817
最后给出了url。
谢谢。
答案 0 :(得分:0)
有几种选择:
WordPress的方式是使用get_permalink($ post_id)
<?php
global $post
$link = get_permalink($post->ID);
或者您可以使用此处显示的REQUEST_URI:http://wordpress.org/support/topic/get-current-page-url