Change the menu position of Stream - xwp/stream GitHub Wiki

By default, the Stream menu is placed just below the Dashboard.

This placement is an intentional for the UX to signify that changes to everything beneath it are going to be logged by Stream.

However, if you find this top placement undesirable, there is a filter available so you can move the Stream menu item wherever you want.

Here's an example of how to move it to the very bottom of the menu:

add_filter( 'wp_stream_menu_position', function() { return 99; } );