Adsense Placement

Status
Not open for further replies.

wildfan

New member
Dec 27, 2006
63
0
0
Can anyone help me? I want to place my adsense ads between the posts on my wp blog, here is the code from the main index page. I tried problogger and the little tutorial didn't help. Can someone please help, show me what and where to place it?

Thanks

<?php get_header(); ?>
<div id="main">
<div id="content">
<p>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="post">
<p>
<h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="day-date">Posted by <em><?php the_author_posts_link() ?></em> on <em><?php the_time('d M Y'); ?></em> | Tagged as: <em><?php the_category(', ') ?></em> <?php edit_post_link(); ?></p>
<div class="post-content"><?php the_content('Continue Reading »'); ?>
<p class="post-info">
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</p>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php comments_template(); ?>
</div>
<?php endforeach; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<p align="center"><?php posts_nav_link(' - ','« Prev','Next »') ?></p>

</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
 


Status
Not open for further replies.