• Is there any way to have my header and footer show up in the admin, in place of the admin bar and admin footer?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You want to customize the admin panel/dashboard to have your own branding?
    You might look into this plugin:

    https://www.ads-software.com/plugins/white-label-cms/

    Using it you can customize many aspects of WordPress dashboard and have your own branding there.

    Thread Starter denijacks

    (@denijacks)

    Hi thanks, I’ve tried this plugin but it doesn’t work for what I’m trying to do. I want to show the same header and footer that is displayed throughout the site on the admin page so it looks like the front end. I’m looking for a code that will allow me to hide admin bar and show the header, and hide the admin footer and show the site footer.

    Thread Starter denijacks

    (@denijacks)

    I found this code to hide the admin footer and admin bar. But how to replace it with wp_head() or wp_footer() ?

    function change_footer_admin () {return wp_footer();}
    add_filter(‘admin_footer_text’, ‘change_footer_admin’, 9999);
    function change_footer_version() {return ‘ ‘;}
    add_filter( ‘update_footer’, ‘change_footer_version’, 9999);

    add_filter(‘show_admin_bar’, ‘__return_false’);

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show footer and header in admin’ is closed to new replies.