How can add the header and footer of my site into the admin dashboard so that the admin dashboard resembles the frontend of my site?The structure that I want would be
{Header.php}
<div>
{Admin Dashboard}
</div>
{footer.php}
Apprently there are a few ways to inject html into the admin dashboard as outlined here [
codex.wordpress.org...] (Looks like not been updated in a while) but what I am looking for is a way to add the themes header.php into my admin dashboard and retain functions found in the header such as menus, search form, admin avatar etc…
This would be awesome for consistency and so it doesn't feel so disjointed for users who have to go to the backend.
Thanks.