if I know $post_ID how can I get the permanent link of this post
because in my plugin I need to know the permanent link to fetch that URI when I post or modified a post.
thanks
if I know $post_ID how can I get the permanent link of this post
because in my plugin I need to know the permanent link to fetch that URI when I post or modified a post.
thanks
Use something like:
$post_url = get_permalink($post_ID);
thank you very much
This topic has been closed to new replies.