apply_filters( ‘custom_menu_order’, bool $custom )

Filters whether to enable custom ordering of the administration menu.

Description

See the ‘menu_order’ filter for reordering menu items.

Parameters

$custombool
Whether custom ordering is enabled. Default false.

Source

if ( apply_filters( 'custom_menu_order', false ) ) {

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

  1. Skip to note 2 content

    Example migrated from Codex:

    The following code below groups Dashboard/Posts/Pages/Comments together at the top of the dashboard menu.

    If you have a custom post type that you want to add to the group, use the format edit.php?post_type=YOURPOSTTYPENAME

    add_filter( 'custom_menu_order', '__return_true' );
    
    add_filter( 'menu_order', 'my_menu_order' );
    
    function my_menu_order( $menu_order ) {
           return array( 'index.php', 'edit.php', 'edit.php?post_type=page', 'edit-comments.php' );
    }

You must log in before being able to contribute a note or feedback.