没吃饭又研究了一会儿,终于搞定了,在选择不输出ad的地方加上一句就可以了: is_attachment() ||
/* verifying */
if( (is_feed()) ||
(strpos($content,'<!--NoAds-->')) ||
(strpos($content,'<!--OffAds-->')) ||
(is_single() && !(get_option('AppPost'))) ||
(is_page() && !(get_option('AppPage'))) ||
(is_home() && !(get_option('AppHome'))) ||
(is_category() && !(get_option('AppCate'))) ||
is_attachment() ||
(is_archive() && !(get_option('AppArch'))) ||
(is_tag() && !(get_option('AppTags'))) ||
(is_user_logged_in() && (get_option('AppLogg'))) ) {
$content = clean_tags($content); return $content;
} |