每个类别的背景颜色不同
如何使用自定义帖子以不同的背景颜色显示我的类别? 我喜欢呼应我的分类中的 slug 名称,使其成为 span 的类属性,并在 css 中对其进行样式设置。但我无法回显 slug 名称,也无法同时显示类别名称。
<?php $post_terms = get_the_terms(); ?>
<span class="<?php echo $post_terms[0]->slug; ?>">
Categories: <?php echo $post_terms[0]->cat_name; ?>
</span>
你能告诉我什么是正确的代码吗?
How can I display my categories in different background color using a custom post?
I like to echo the slug name from my taxonomy to become the class attributes of span and style it in css. but I can't able to echo the slug name and I can't display the category name at the same time.
<?php $post_terms = get_the_terms(); ?>
<span class="<?php echo $post_terms[0]->slug; ?>">
Categories: <?php echo $post_terms[0]->cat_name; ?>
</span>
can you show me what is the right code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此代码来实现这一点;
我希望这段代码能对您有所帮助。快乐编码
you can achieve that using this codes;
I hope this code will help you. happy coding