How to move "Collapse Menu" to top of admin bar?

As stated in the title, I try to perpetually move the "Collapse Menu" button which is normally the very last e

As stated in the title, I try to perpetually move the "Collapse Menu" button which is normally the very last entry in the admin sidebar (backend) to the top. I googled but can't find any working solution.

I found that it is printed through wp-admin/menu-header.php. So I thought I could override this file with my child theme. But then, when a theme update changes the menu-header.php file, I would need to realize and reproduce these changes in the child theme as well. Not very practical...

Anybody got an ideas?

As stated in the title, I try to perpetually move the "Collapse Menu" button which is normally the very last entry in the admin sidebar (backend) to the top. I googled but can't find any working solution.

I found that it is printed through wp-admin/menu-header.php. So I thought I could override this file with my child theme. But then, when a theme update changes the menu-header.php file, I would need to realize and reproduce these changes in the child theme as well. Not very practical...

Anybody got an ideas?

Share Improve this question edited Sep 20, 2019 at 14:34 Howdy_McGee 20.9k24 gold badges91 silver badges177 bronze badges asked Sep 18, 2019 at 22:04 McYodaMcYoda 1
Add a comment  | 

1 Answer 1

Reset to default 0

Rule of thumb is do not modify any core WordPress files. Those in the root, wp-includes, wp-admin. You could do this easily with JavaScript:

/**
 * Move the 'Collapse menu' item to the top of the admin menu
 *
 * @return void
 */
function wpse348570_move_collapse_menu() {

    ?>
        <script>
            if( jQuery( '#collapse-menu' ).length ) {
                jQuery( '#collapse-menu' ).prependTo( '#adminmenu' );
            }
        </script>
    <?php

}
add_action( 'admin_footer', 'wpse348570_move_collapse_menu' );

You can add the above as a plugin or place it into the child theme.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745142997a4613515.html

相关推荐

  • How to move &quot;Collapse Menu&quot; to top of admin bar?

    As stated in the title, I try to perpetually move the "Collapse Menu" button which is normally the very last e

    6小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信