GoogleAdsenseをショートコードで使用する

GoogleAdsenseをショートコードで使用する

Add function.php

function google_adsense() {
return '<div>
<script type="text/javascript">
<!--
google_ad_client = "PUB-ID";
google_ad_slot = "AD-SLOT";
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', 'google_adsense');
[adsense]

2個目のAdsenseは

function google_adsense2() {
return '<div>
<script type="text/javascript">
<!--
google_ad_client = "PUB-ID";
google_ad_slot = "AD-SLOT";
google_ad_width = 125;
google_ad_height = 125;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>';
}
add_shortcode('adsense2', 'google_adsense2');
[adsense2]

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)