#48411 closed enhancement (worksforme)
Sorting Block Items in Ascending Order
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 5.2.3 |
Component: | Editor | Keywords: | 2nd-opinion |
Focuses: | Cc: |
Description
The Block items are not sorting in any order, it would be good to sort in Ascending order
Example Photo
To sort
- Open wp-includes/js/dist/block-editor.js
- Find the method BlockTypesList()
- Replace var items = _ref.items, with
var items = _ref.items.sort(function (a, b) { var a1 = a.title, b1 = b.title; if (a1 == b1) return 0; return a1 > b1 ? 1 : -1; }),
Attachments (1)
Change History (4)
#2
@
5 years ago
@SergeyBiryukov May be, but in future we can make an option in WordPress Gutenberg settings to show by frequency or title :-)
#3
@
4 years ago
- Milestone Awaiting Review deleted
- Resolution set to worksforme
- Status changed from new to closed
Hi @vinoth06. In the latest version, blocks sorted alphabetically within their categories.
Version 0, edited 4 years ago
by
(next)
Note: See
TracTickets for help on using
tickets.
Thanks for the ticket!
I think the blocks are currently ordered in the supposed usage frequency. Not sure if ordering them by title would provide better experience here.