开发者

How to add article page url at bottom of the same page?

开发者 https://www.devze.com 2023-03-07 10:16 出处:网络
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.

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=6开发者_如何转开发279817

here at the end url is given. thank you.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消