如何在此 Wordpress hack 中指定多个类别?

发布于 2024-11-09 09:59:39 字数 368 浏览 0 评论 0原文

我排除了特定类别的评论。但是,当我尝试排除多个时,它不起作用。

这有效:

这不起作用:

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 技术交流群。

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

发布评论

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

评论(2

春夜浅 2024-11-16 09:59:39

WordPress 有一个相当不错的文档,总是值得首先研究一下。请参阅 函数参考:in_category()

该函数似乎不接受多个参数,因此您'必须在 PHP 中执行此操作:

if ((!in_category('7')) and (!in_category('9')))

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:

if ((!in_category('7')) and (!in_category('9')))
寄风 2024-11-16 09:59:39
<?php
if ( !in_category('7') && !in_category('9') ) {
  comments_template();
}
?>
<?php
if ( !in_category('7') && !in_category('9') ) {
  comments_template();
}
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文