有几种备选方案:
首先,您可以按照@iambriansreed的建议使用短代码,但您需要了解PHP编程才能注册短代码。以下代码为from a website (in spanish) 这显示了如何使用Adsense编写一个简单的短代码:
/*
* Copy the code into your theme\'s functions.php file
* Change the AdSense <script> for yours
*/
function showads() {
return \'<div><script type="text/javascript"><!--
google_ad_client = "pub-XXXXXXXXXXXXXX";
google_ad_slot = "4668915978";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>\';
}
add_shortcode(\'adsense\', \'showads\');
其次,您可以使用如下插件
Quick Adsense 实现相同的短代码,但很容易自定义,或者让插件选择放置广告的位置。
最后,您可以编写自己的代码在第n段添加广告(即利用每个段落并选择第n段,然后在那里添加您的广告代码)。这不是最好的解决方案,但可以完全定制。