不要将Adsense代码粘贴到博客帖子中。改用插件。
插件示例:
<?php
/* Plugin Name: Zoomingjapan Adsense */
add_filter( \'the_content\', \'zoomingjapan_adsense\' );
function zoomingjapan_adsense( $content )
{
if ( is_feed() or ! is_singular() )
return $content;
$adsense = \'<adense code, replace that!>\';
// remove all existing script elements
$content = preg_replace("~<script[^>]*>.+</script[^>]*>~i", \'\', $content );
return $content . $adsense;
}
用法:
更改变量的内容$adsense
无论你需要什么将文件放入wp-content/plugins/
.在中激活它wp-admin/plugins.php
.仅此而已。