サイドバーセクションの並べ替え

これに対する設定はありませんが、admin/customize/themes に CSS を追加することで実現できます。

.sidebar-wrapper {
  .sidebar-custom-sections {
    display: contents;
  }
  [data-section-name="community"] {
    order: -3;
  }
  [data-section-name="categories"] {
    order: -2;
  }
  [data-section-name="custom-section-title-here"] {
    order: -1;
  }
}
「いいね!」 4