在主页中尝试根据标签提供颜色 .feed-view .post-wrapper .snippet-thumbnail-container。例如对于标签“Italiano”背景颜色:红色和标签“英语”背景颜色:蓝色,
<b:if cond='data:view.isHomepage'><style>.feed-view .post-wrapper .snippet-thumbnail-container{background-color:red!important}</style></b:if>
使用此代码,主页中的所有缩略图都会变红,但是当我添加标签条件时...
<b:if cond='data:view.isHomepage and data:post.labels any (l => l.name == "Italiano")'><style>.feed-view .post-wrapper .snippet-thumbnail-container { background-color: red !important}</style></b:if>
使用此代码根本没有颜色。我的错误在 post.labels 条件下,但我无法准确找到错误所在。