Riorganizzazione della sezione della barra laterale

Non esiste un’impostazione per questo, ma può essere fatto aggiungendo CSS a admin/customize/themes

.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 Mi Piace