That was done on purpose and I haven’t seen a plugin to change that…
See:
http://wordpress.org/support/topic/214938?replies=13#post-892061
http://wordpress.org/tags/add-post-redirect
If you do find a solution, please report that back here. Thanks.
Thread Starter
Joseph
(@xmsmmgrs)
Do you know where in the code I can fix this? That would help me a lot.
Thanks.
Thread Starter
Joseph
(@xmsmmgrs)
If someone needs this fix here it is.
`
I’m guessing that it probably is in wp-adming/post.php in the redirect_post logic.
Just a reminder that fix of changing line 52 of wp-admin/post.php
from
$location = add_query_arg( 'message', 6, get_edit_post_link( $post_ID, 'url' ) );
to
$location = "post-new.php";
will need to be made each time you update WordPress.
In 2.8 you do this on line 46.
Thanks! This is what I need!
On WP 2.9 you have to replace this on line 57:
THIS:
$location = add_query_arg( ‘message’, $message, get_edit_post_link( $post_ID, ‘url’ ) );
WITH THIS:
$location = “post-new.php”;