上午排除特定類別的評論。但是,當我嘗試排除多於一個時,它不起作用。如何在這個WordPress的黑客中指定多個類別?
這工作:<?php if (!in_category('7')) comments_template(); ?>
這不起作用:
<?php if (!in_category('7 , 9')) comments_template(); ?>
或
<?php if (!in_category('7')) comments_template(); ?> <?php if (!in_category('9')) comments_template(); ?>