https://xmlexpr.blogspot.com/2025/10/weekly-blog-design-002.html
https://xmlexpr.blogspot.com/2025/10/weekly-blog-design-002.html?max-results=20
https://xmlexpr.blogspot.com/
user_r100
https://www.blogger.com/profile/09729361485633901245
//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizihHpchmJoGeEVuJGCATZpHw9BgxolQLkV-Mw0hXTuIjdZQ8e_AeFQZdY6r5UrGWerl4b3Qx4aYsVx2w9y474FJvlyZDZiNcCLLNNQly7M3NZ8Xz1g2dsxQh3yuQJln2e6JTJtzci506US-j64gEDelPT-QYo7_TFH1kTp6AapPzrZQ/s220/channels4_profile.jpg
8448405977722932913
https://xmlexpr.blogspot.com/2025/10/partially-hide-blogger-post-labels.html
Partially Hide Blogger Post Labels
October 06, 2025
2025
October
05
05:57 PM
How to partially hide certain post labels in Blogger.
There might be times where you want to label certain posts for editorial purposes. For example, the following labels are useful for blog authors but not so much for blog visitors:
require-revisions
WIP (work-in-progress)
missing-thumbnail
need-review
And so you would want to separate them from regular labels, e.g. by giving them a different color, or hide them completely.
🎯 Template Code
First, create a list of special labels:
<b:with var='specialLabels' value='[
"require-revisions",
"WIP",
"missing-thumbnail",
"need-review",
]'>
<!-- ... -->
</b:with>
Next, use the not in
lambda expression to filter out special labels from labels data:
🔷 Syntax
{{LabelsData}} where (label => label.name not in data:hiddenLabels)
🔷 Usage Example
<!-- directly inside Blog widget, or globally -->
<b:with var='specialLabels' value='[
"require-revisions",
"WIP",
"missing-thumbnail",
"need-review",
]'>
<!-- inside Blog widget -->
<!-- Post Labels -->
<!-- display all labels except special ones -->
Posted in:
<b:loop values='data:post.labels where (label => label.name not in data:hiddenLabels)' var='label'>
<data:label.name/>
</b:loop>
</b:with>
https://xmlexpr.blogspot.com/search/label/template-development
template-development
https://xmlexpr.blogspot.com/2025/10/weekly-blog-design-002.html
https://xmlexpr.blogspot.com/