如何在此 Wordpress hack 中指定多个类别?
我排除了特定类别的评论。但是,当我尝试排除多个时,它不起作用。
这有效:
这不起作用:
或
am excluding comments from specific categories. However, when I try to exclude more than one, it doesn't work.
This works: <?php if (!in_category('7')) comments_template(); ?>
This does not work:
<?php if (!in_category('7 , 9')) comments_template(); ?>
or
<?php if (!in_category('7')) comments_template(); ?> <?php if (!in_category('9')) comments_template(); ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WordPress 有一个相当不错的文档,总是值得首先研究一下。请参阅 函数参考:in_category()
该函数似乎不接受多个参数,因此您'必须在 PHP 中执行此操作:
Wordpress has a pretty decent documentation that is always worth looking into first. See Function Reference: in_category()
The function does not seem to accept multiple arguments, so you'll have to do this in PHP: