我怀疑你说“feed”时我没有完全理解你的意思。
然而,你说你想要一个
对于我来说,如何根据查看内容的提要类别来为各个帖子设置不同的风格?
我可能有点离谱,但如果你真的想说你想根据一篇文章所属的类别来设计不同的风格,那么in\\u category模板标签可能会有所帮助。
它不会根据某人在到达相关帖子之前单击的链接来更改显示,而是根据您设置的规则来更改显示,并根据您对帖子的分类方式设置条件标记。
例如,如果你有一个帖子,我的红色帖子分类为红色
您可以设置一个规则,将帖子的背景色(或任何其他格式)设置为在满足条件时显示为红色
if ( in_category( \'red\' )) {
// the instructions given after this point could direct the changing of the background to red...
} elseif ( in_category( \'green\' )) {
// instructions given after this point could change background to green...
} else {
// no change from the standard template...
}
不确定这是否符合您的要求???:)
WordPress codex on in_category template tag