I have a custom taxonomy that is non-hierarchal (like tags) but I have sort=>true
.
I have also added php with a custom filter to get_terms_orderby
which sets $orderby = 'tr.term_order';
so that WordPress will remember my order. See here: https://cln.sh/L4N0ZGwV
This works correctly on the post edit screen, terms are displayed in the saved order (not alphabetically). See here: https://cln.sh/QKmgbmSg
However, in the Block Editor when I use the custom taxonomy block generated by MetaBox, the terms are sorted alphabetically. See here: https://cln.sh/0D4ScfCJ
How is the MB custom taxonomy Block in the Block Editor retrieving custom taxonomy terms?
I expected that my filter would affect the block. I have tried it at differing priorities by it doesn't seem to have an effect.
Thank you!