在特定类别上显示广告

时间:2021-12-01 作者:Kumar

我只想在特定类别中显示广告。有人能帮我吗?这是在所有帖子上显示广告的代码/

<?php get_template_part( \'template-parts/ads/below-head\' ); ?>

1 个回复
最合适的回答,由SO网友:thedorklord 整理而成

这将在属于数组中列出的类别的所有帖子上显示广告:

<?php
global $post;
if ( in_category( array(\'news\', \'cats\', \'dogs\'), $post->ID ) ) {
    get_template_part( \'template-parts/ads/below-head\' );
} ?>