Hi guys,
I’m trying to order taxonomy terms weight but it won’t work…
Can you check my code please?
<ul>
{{ with .Site.GetPage "taxonomies" "songs" }}
{{ range first 50 ( where .Site.Pages.ByWeight "Params.male" true ) }}
<li><a href="{{ .Page.Permalink }}">{{ .Page.Title}}</a></li>
{{ end }}
{{ end }}
</ul>
and in my _index.md taxonomy pages:
---
title: "Luke Bryan"
slug: "luke-bryan"
male: true
songs_weight: 55
---
It lists all male singers but not ordered by the weight…
Is the name “songs_weight” correct?
Thank u