Home » 更新・運営情報

googleアドセンスを導入しました。

10 4月 2010 No Comment

googleアドセンスを導入しました。
とりあえずトップページの1記事目のみ表示。

編集ファイル:メインインデックスのテンプレート (index.php)

編集内容:
表示する投稿記事があるかの繰り返し処理に
その処理が行われた回数を数えるカウンタ(cnt_post)を追加。

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                    ↓
<?php if (have_posts()) : while (have_posts()) : the_post(); $cnt_post++; ?>

記事の内容を表示するthe_content()の後に広告の表示する処理を追加。
ここではヒアドキュメントを使用。

<?php the_content(); ?>
<?php if($cnt_post <= 1) {
print <<< EOD
<HR />
<!–記事下部広告ソースを挿入–>
EOD;
} ?>

※ EODの開始直後・終了直前は改行する必要がある。
これで無事表示できました。

Similar Posts:




コメント:

Add your comment below, or trackback from your own site. You can also subscribe to these comments via RSS.

Be nice. Keep it clean. Stay on topic. No spam.

使用可能なタグ:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

This is a Gravatar-enabled weblog. To get your own globally-recognized-avatar, please register at Gravatar.