I want to get post url from the back end edit post page,
the edit post url is : www.ddd.com/wp-admin/post.php?post=1&action=edit
the real post is: www.ddd.com/wp/?p=1
since the user can edit permalink, i need some wordpress parametrs so it will be constant.
Looking for this answer:
global $post;
get_permalink($post->ID);
thx all
You can get the
ID
of the post you’re editing like this:This is and can only work if your editing an existing/saved post. It won’t and can’t work on »Add New«-Pages, because the post you’re going to add isn’t saved to the database yet, after »Publish« has been pressed one gets redirected to the actual »Edit«-Page and the above is possible.
If you are looking for the post edit url for admin end and you have the post id (suppose
$post_id
) with you, then you can use the following code for getting the url.You can use the ‘current_screen’ hook and
get_permalink()
:This hook receives a WP_Screen_Object with misc. information about the current admin screen the user is browsing. See http://codex.wordpress.org/Plugin_API/Action_Reference/current_screen and http://codex.wordpress.org/Function_Reference/get_permalink for details.