经验法则是do not 修改任何核心WordPress文件。根目录中的那些,wp包括,wp admin。使用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\' );
您可以将上述内容添加为插件或将其放置到子主题中。