Wordpress Blog Help- AdSense?

Discussion in 'WordPress' started by GardenSEO, Mar 30, 2007.

Thread Status:
Not open for further replies.
  1. #1
    Hello everyone :)

    I am working on a website at the moment which includes a blog. I am wanting to add AdSense to the blog but I am unsure about how to go about this :confused:

    I am wanting to add AdSense on the blog homepage after ever second post made. I am also wanting to add it to the individual post pages below the post. Can anyone help me do this?

    The blog is located at http://www.Vegetable-Gardens.co.uk/blog

    Thanks
     
    GardenSEO, Mar 30, 2007 IP
  2. Bugster

    Bugster Well-Known Member

    Messages:
    98
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    128
    #2
    This is the way i have it

    show ad after first post.
    On the post itself show at the top and bellow the post


    1st edit your main index template
    after :
    <div class="post">
    
    <?php the_content(__('Continue Reading &raquo;')); ?>
    
    </div>
    
    <!--add your google code here-->
    
    <?php endwhile; ?>
    Code (markup):
    2. Top of post : Edit Single Post
    after:
    <div class="author"><?php if ($showauthor == 'true') {_e('&raquo; by'); echo ' '; the_author_posts_link();} ?> in: <?php the_category(','); ?></div>
    
    <!--add google code here-->
    <div class="post">
    <?php the_content(__('Continue Reading &raquo;')); ?>
    </div>
    Code (markup):
    3. At the bellow of the post
    After:
    <?php if (function_exists('related_posts')) { ?>
    <div class="related">
    <h3>Related Posts</h3>
    <ul><?php related_posts(); ?></ul></div>
    <?php } ?>
    <!--add google code here-->
    Code (markup):
    just play around with it, that's how i got mine to work and it looks greate.

    Good luck
     
    Bugster, Mar 30, 2007 IP
  3. gigidawg

    gigidawg Peon

    Messages:
    380
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can use a wordpress plugin called Ad-sense deluxe. That will make your work a lot easier !
     
    gigidawg, Mar 31, 2007 IP
  4. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #4
    I am using Adsense-Injection plugin..

    Also adsense Deluxe is also a good plugin - But i am not able to make it work.
     
    MeetHere, Mar 31, 2007 IP
  5. autorave

    autorave Peon

    Messages:
    995
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    0
    #5
    autorave, Mar 31, 2007 IP
Thread Status:
Not open for further replies.