动态添加多个类到wordpress body_class()
我试图弄清楚如何自动将页面的添加术语添加到我的正文类中。我非常接近我一直在拼凑的一些代码。现在这可行,但只返回一项。我怎样才能让它返回一个术语数组,每个术语作为一个类添加到 body 标记中?这是我到目前为止所得到的。仅供参考“topbar”是我的分类名称。
<?php $class='';
if(is_page()) {
$terms = get_terms("topbar");
$class .= $terms[0]->slug;
}?>
<body id="top" <?php if (function_exists('body_class')) body_class($class ); ?>>
I'm trying to figure out how to add add terms for pages to my body class automatically. I'm very close with some code I've been piecing together. Right now this works, but only returns one term. How can I get it to return an array of terms each as a class that get's added to the body tag? Here's what I've got so far. fyi "topbar" is my taxonomy name.
<?php $class='';
if(is_page()) {
$terms = get_terms("topbar");
$class .= $terms[0]->slug;
}?>
<body id="top" <?php if (function_exists('body_class')) body_class($class ); ?>>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
干杯;)
Cheers ;)