• I was looking around the settings but couldn’t find a way to manually reorder how field groups appear on the post edit screen. Does it only sort alphabetically or by date? Btw, amazing tool, use it everywhere

Viewing 1 replies (of 1 total)
  • Hey @juliana9

    There’s no drag-and-drop reorder UI in ACF itself. In the classic editor you could reorder metaboxes by dragging them on screen, but that doesn’t carry over reliably in the block editor, so menu_order is the way to go.

    You can set it directly inside each field group’s settings (Edit Field Group → scroll down to Group Settings → Menu Order). Lower numbers appear first. If two groups have the same value, they’ll fall back to alphabetical.

    If you’re managing field groups in PHP or via ACF’s local JSON, you can set it there too:

    // In a PHP-registered field group:
    acf_add_local_field_group( [
        'key'        => 'group_123',
        'title'      => 'My Field Group',
        'menu_order' => 10,
        // ...rest of your config
    ] );
    

    Or in your group_xyz.json file:

    {
    "key": "group_123",
    "title": "My Field Group",
    "menu_order": 10
    }

    Hope that helps!

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.