如何禁用 post header 中的标签按字母顺序排序 - 博主

how to Disable Alphabetically Sorting of Labels in post header - blogger

我想控制 post header
中 Label 的顺序 . 按字母顺序排序在我的例子中是不实用的 . 注意:我不是指标签小工具

也许是这样的:

.post-labels  {
  display: flex;
}

.post-labels a:nth-of-type(1) {
  order: 2;
}

.post-labels a:nth-of-type(2) {
  order: 4;
}

.post-labels a:nth-of-type(3) {
  order: 1;
}

.post-labels a:nth-of-type(4) {
  order: 3;
}

只是 CSS,当我们必须更改 Blogger 中的某些内容时,这总是一件好事。

取自