动态添加多个类到wordpress body_class()

发布于 2024-12-08 18:44:12 字数 364 浏览 1 评论 0原文

我试图弄清楚如何自动将页面的添加术语添加到我的正文类中。我非常接近我一直在拼凑的一些代码。现在这可行,但只返回一项。我怎样才能让它返回一个术语数组,每个术语作为一个类添加到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妖妓 2024-12-15 18:44:12
<?php
if(is_page()) {
    global $post;
    $terms = wp_get_post_terms($post->ID, "topbar", array("fields" => "names"));
    $class = ($terms) ? implode(" ", $terms) : '';
}
?>

<body id="top" <?php if (function_exists('body_class')) body_class($class ); ?>>

干杯;)

<?php
if(is_page()) {
    global $post;
    $terms = wp_get_post_terms($post->ID, "topbar", array("fields" => "names"));
    $class = ($terms) ? implode(" ", $terms) : '';
}
?>

<body id="top" <?php if (function_exists('body_class')) body_class($class ); ?>>

Cheers ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文