Search code examples
wordpressmenuadmin

Wordpress admin menu keeps folding


Some time ago, wordpress admin menu got folded and since this point I am unable to keep it opened, I need to press on the small triangle to open it.

I tried to hit wp-admin/index.php?unfoldmenu=1 and it did not help.
It is not a browser cookie/cache issue since I have opened the admin from a totally new pc and it's still happening.

Maybe there is a JavaScript hook for that? (Version 3.5.1)


Solution

  • i ended up writing a custom script in my theme functions.php.
    its a temp solution, but works for now.

    function make_menu_unfolded() {
        print '<script>jQuery(document).ready(function(){jQuery("body").removeClass("folded")})</script>';
    }
    
    add_filter('admin_head', 'make_menu_unfolded');