[wp]Ad Sense管理 広告300×250を2つ並べてみるWprdPressのsingle.php

WordPressのSingle.phpを書き換えるだけで、一瞬にして、サーバーを意識することなく、すべてのブログの広告を貼りかえることができる。
これは、本当にすばらしい機能だ!

wordpressのsingle.phpにAdSenseコードを貼ってみた
https://4knn.tv/wordpress_single-php_adsense/

 

これから作業するのが…

❏336×280の広告1つを、300×250の広告2つに変えてみる。

❏1ページあたり3広告なので、文末の広告を削除する。

この2つ。

カンタンな事なのだが、普段まったく触っていないので慎重に。慎重に。

一応この時のバックアップのsingl.phpをブログにメモ

Human というテンプレートをコピーしている、HumanChaildというテンプレートへの書き換え

ブログに書くまでのことはないメモだけど、自分の為にやっていることが、いつか誰かの為にもなったりする。何よりも ブログのメモが究極のクラウドメモになる。
時空を超えていつまでも残るメモとなるのかもしれないし。

<?php get_header(); ?>
<section class=”content”>

<?php get_template_part(‘inc/page-title’); ?>

<div class=”pad group”>

<?php while ( have_posts() ): the_post(); ?>
<!– kanda tag –>
<?php echo post_custom(‘views’); ?>Views
<!– kanda tag –>
<article <?php post_class(); ?>>
<div class=”post-inner group”>

<h1 class=”post-title”><?php the_title(); ?></h1>
<p class=”post-byline”><?php _e(‘by’,’hueman’); ?> <?php the_author_posts_link(); ?> &middot; <?php the_time(get_option(‘date_format’)); ?></p>

<?php if( get_post_format() ) { get_template_part(‘inc/post-formats’); } ?>

<div class=”clear”></div>
<?php // display_time(‘default’); ?>

<div class=”entry”>

<?php get_template_part(‘sns’);?>
スポンサーリンク<BR>
<script async src=”//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script>
<!– header4knn336 –>
<ins class=”adsbygoogle”
style=”display:inline-block;width:336px;height:280px”
data-ad-client=”ca-pub-4945609109429902″
data-ad-slot=”7350787075″></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

<div class=”entry-inner”>

<?php the_content(); ?>

スポンサーリンク
<!– 4knn.tv google Adsense –>

<script async src=”//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script>
<!– 4knn336 –>
<ins class=”adsbygoogle”
style=”display:inline-block;width:336px;height:280px”
data-ad-client=”ca-pub-4945609109429902″
data-ad-slot=”5810350672″></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

<?php wp_link_pages(array(‘before’=>'<div class=”post-pages”>’.__(‘Pages:’,’hueman’),’after’=>'</div>’)); ?>
</div>
<?php get_template_part(‘sns’);?>
<div class=”clear”></div>
<p><p> <p><p>
</div><!–/.entry–>
</div><!–/.post-inner–>
</article><!–/.post–>
<?php endwhile; ?>

<div class=”clear”></div>

<?php the_tags(‘<p class=”post-tags”><span>’.__(‘Tags:’,’hueman’).'</span> ‘,”,'</p>’); ?>

<?php if ( ( ot_get_option( ‘author-bio’ ) != ‘off’ ) && get_the_author_meta( ‘description’ ) ): ?>
<div class=”author-bio”>
<div class=”bio-avatar”><?php echo get_avatar(get_the_author_meta(‘user_email’),’128′); ?></div>
<p class=”bio-name”><?php the_author_meta(‘display_name’); ?></p>
<p class=”bio-desc”><?php the_author_meta(‘description’); ?></p>
<div class=”clear”></div>
</div>
<?php endif; ?>

<?php if ( ot_get_option( ‘post-nav’ ) == ‘content’) { get_template_part(‘inc/post-nav’); } ?>

<?php if ( ot_get_option( ‘related-posts’ ) != ‘1’ ) { get_template_part(‘inc/related-posts’); } ?>

<?php comments_template(‘/comments.php’,true); ?>

</div><!–/.pad–>

</section><!–/.content–>

<?php get_sidebar(); ?>

<?php get_footer(); ?>