This commit is contained in:
xing 2023-03-14 19:47:18 +08:00
parent e03194b768
commit cb1ce2e878

View File

@ -173,11 +173,14 @@ func parseDropdownCate(h *wp.Handle) (cateName string, r bool) {
if cat == "" { if cat == "" {
return return
} }
cates := slice.SimpleToMap(cache.CategoriesTags(h.C, constraints.Category), func(v models.TermsMy) uint64 { id := str.ToInteger[uint64](cat, 0)
return v.Terms.TermId if id < 1 {
return
}
i, cc := slice.SearchFirst(cache.CategoriesTags(h.C, constraints.Category), func(my models.TermsMy) bool {
return id == my.Terms.TermId
}) })
cc, r := cates[str.ToInteger[uint64](cat, 0)] if i < 0 {
if !r {
return return
} }
cateName = cc.Name cateName = cc.Name