I’m testing different layouts for my admin pages, and the easiest way I found to determine which layout to load is with URL parameters. One of those parameters is “fullscreen=1” which hides the admin menu, for instance. The problem is, whenever I save a post / custom post type by submitting a form, WordPress will redirect me without preserving my parameter, thus breaking my layout by adding back the admin menu…
Is there an easy way to achieve this?
I finally figured this one out. Turns out I was so focused on filters and actions that I forgot about the basics.
In order to preserve any custom URL parameters after saving a post (via submitting the form) do the following:
Filter your admin URL with a conditional that checks for the parameter you want to preserve (based on this answer), like this:
Then, all you have to do is make sure you send that request along with your form, because it will activate the filter above prior to redirecting back to your post / page / custom post type. To do this, simply add a hidden input.
So if you access
/wp-admin/post.php?post=100&action=edit&fullscreen=1
, that last parameter will be there after saving the form.