Php 如何在Wordpress中不显示特定类别帖子的谷歌广告?

Php 如何在Wordpress中不显示特定类别帖子的谷歌广告?,php,wordpress,Php,Wordpress,我不想显示特定类别帖子的谷歌广告 哪种代码会阻止特定类别帖子的谷歌广告? 谷歌广告位于content single.php中。您可以使用带有“!”的函数(逻辑非) if( !is_category(1469) && !in_category(1469) ): AD CODE GOES HERE endif; if( !has_category('category-to-exlude-slug') ) { //your google ads code }

我不想显示特定类别帖子的谷歌广告

哪种代码会阻止特定类别帖子的谷歌广告? 谷歌广告位于content single.php中。

您可以使用带有“!”的函数(逻辑非)

if( !is_category(1469) && !in_category(1469) ):
AD CODE GOES HERE
endif;
if( !has_category('category-to-exlude-slug') ) {
    //your google ads code
}