不久前,我在 wordpress custom_function.php 文件中添加了以下代码以显示 google adsense。现在我想删除代码,但是当我注释掉以下代码时我的网站中断了。我不明白为什么。请就此提供您的意见。
function sidebar_ads() {
?>
<script type="text/javascript"><!--
google_ad_client = "pub-xxxxxx";
/* 160x600, created 9/23/10 for SideBar */
google_ad_slot = "xxxxx";
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<?php }
add_action('thesis_hook_before_sidebars', 'sidebar_ads');