Home / Reorder Admin Menu Items
Duplicate Snippet

Embed Snippet on Your Site

Reorder Admin Menu Items

Control the order of the admin menu items with a simple snippet.

40+
Code Preview
php
<?php
add_filter( 'custom_menu_order', '__return_true' );
// This will move the WPCode menu under the Dashboard menu item.
// Uncomment and add more items as needed.
add_filter( 'menu_order', function () {
	return array(
		'index.php',
		'wpcode',
// 		'edit.php', // Posts
// 		'upload.php', // Media
// 		'edit.php?post_type=page', // Pages
// 		'edit-comments.php', // Comments
	);
} );

Comments

Add a Comment