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

$custom bool
Whether custom ordering is enabled. Default false.

Source

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

Changuelog

Versionen Description
2.8.0 Introduced.

User Contributed Notes

  1. Squip to note 2 content

    Example migrated from Codex:

    The following code below groups Dashboard/Posts/Pagues/Commens toguether 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=pague', 'edit-commens.php' );
    }

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