1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Help on placement-Blog

Discussion in 'Placement / Reviews / Examples' started by El Nino, Jun 8, 2008.

  1. #1
    El Nino, Jun 8, 2008 IP
  2. Smeey

    Smeey Well-Known Member

    Messages:
    377
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    110
    #2
    On the sidebar. :)
     
    Smeey, Jun 8, 2008 IP
  3. ckgni

    ckgni Active Member

    Messages:
    208
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    58
    #3
    After trying lots of placements on my blogs, I have figured out that this works better, with higher CTR and earnings:

    All units are 336x280 rectangle with text ads only

    On the home page:
    1 ad unit before the first post
    1 ad unit after the last post

    On the posts pages:
    1 ad unit on the posts page, before the post title
    1 ad unit on the posts page after the post

    On categories pages:
    1 ad unit before the first post
    1 ad unit after the last post

    Important: never put your ad units under the title of your posts.
    This is forbidden by Adsense TOS:
    
    POST TITLE
    <adsense ad>
    Post text
    
    Code (markup):
    This is a mistake made by many bloggers and you may get a warning by the Adsense team (as I did) or even worse, have your Adsense account closed. The only text that should be displayed right above the ads is "Advertisment" or "Sponsored links". Post titles or any other text is not allowed.

    The right placement is:

    
    
    <adsense ad>
    
    POST TITLE HERE
    Post text here
    some blank lines here (usually 2 or 3 <br /> HTML line breaks are ok)
    
    <adsense ad>
    
    Code (markup):
    And don't forget: always use 336x280 rectangle ad units. Make the background, links and text color of the ads match the colors of your page.

    These tips give the higher possible CTR. :)
     
    ckgni, Jun 8, 2008 IP
  4. angilina

    angilina Notable Member

    Messages:
    7,824
    Likes Received:
    186
    Best Answers:
    0
    Trophy Points:
    260
    #4
    I suggest you put a 250*250 ad unit at the top of first post.
     
    angilina, Jun 8, 2008 IP
  5. El Nino

    El Nino Peon

    Messages:
    145
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Im not quite sure where in the template i put it in.

    <?php get_header(); ?>
    <div id="content">
    	<div id="main">
    	<?php if (have_posts()) : ?>
    	<?php while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
    		<span class="post-date" title="Date"><?php the_time('F j, Y') ?></span>
    		<span class="post-cath" title="Category"><?php the_category(', ') ?></span>
    		<span class="post-comm"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
    		<span class="post-edit"><?php edit_post_link('Edit','',''); ?></span>
    		<span class="entry"><?php the_content('Read the rest...'); ?></span>
    	</div>
    
    <?php comments_template(); ?>
    <?php endwhile; ?>
    <p align="center"><?php next_posts_link('&laquo; Previous Entries') ?> <?php previous_posts_link('Next Entries &raquo;') ?></p>
    <?php else : ?>
    <h2 align="center">Not Found</h2>
    <p align="center">Sorry, but you are looking for something that isn't here.</p>
    	<?php endif; ?>
    	</div>
    	
    <?php get_sidebar(); ?>
    
    </div>
    <?php get_footer(); ?>
    <script type="text/javascript"><!--
    google_ad_client = "pub-0315553126601293";
    /* 728x90, created 6/6/08 */
    google_ad_slot = "5480937742";
    google_ad_width = 728;
    google_ad_height = 90;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </body>
    </html>
    
    Code (markup):
     
    El Nino, Jun 9, 2008 IP