Ordering taxonomy widgets in the sidebar #319
-
The existing sidebar shows the taxonomy widgets ordered as How to get that? I looked at the |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
I didn't find an ideal solution. I pushed a new commit e59069c for it. .tags-taxonomies {
order: 1;
}
.categories-taxonomies {
order: 2;
}
.series-taxonomies {
order: 3;
} |
Beta Was this translation helpful? Give feedback.
-
Yes, that works. Another option is to not do this programmatically, i.e. not
But this is not elegant and requires manually creating more sidebar/taxonomy-term.html files if the user wants to add more terms to the taxonomy. Your method avoids this extra manual work. |
Beta Was this translation helpful? Give feedback.
-
@sagarbehere I've created the
I think it's a more ideal implementation(configurable). |
Beta Was this translation helpful? Give feedback.
@sagarbehere I've created the
taxonomicOrder
parameter for this an hour ago. e3220a8I think it's a more ideal implementation(configurable).