Disable ads on posts with a certain tag?
-
I tried a function like this
//* function theme_slug_filter_the_content( $content ) {
//* $custom_content = ‘<!–NoAds–><!–OffDef–><!–OffWidget–>’;
//* $custom_content .= $content;
//* return $custom_content;
//* }
//* add_filter( ‘the_content’, ‘theme_slug_filter_the_content’ );The idea being it will insert the adblocking codes to the content however it’s not working.
Ultimately I want to block ads on posts with a certain tag. Any easy way to do that?
- The topic ‘Disable ads on posts with a certain tag?’ is closed to new replies.