Is this not just a plugin you need to install?
Kraai
Senior Poster
3,981 posts since Feb 2008
Reputation Points: 76
Solved Threads: 87
OK, according to the first link you gave, in the comment section, it seems that the code must be inserted inside the so try this and see if it works.
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="PostHead">
<div class="PostTime"><?php the_time('<b>j</b> <a>M Y</a>') ?> </div>
<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<small class="PostDet"><?php edit_post_link('Edit', '', ' | '); ?> Author: <?php the_author() ?> | Filed under: <?php the_category(', ') ?>
</small>
</div>
<div class="entry">
<!-- Ads -->
<?php if(function_exists('wp_smart_image')) wp_smart_image($size='mini', $type = 'single') ?>
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<p class="postmetadata">
<span class="tags"><?php the_tags('Tags: ', ', '); ?> </span>
</p>
<div class="comments"><?php comments_popup_link('NO COMMENTS', '<span> 1 </span> COMMENTS', '<span> % </span> COMMENTS'); ?></div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<div class="sidebar-right">
<div class="twitter">
<div class="twitter-content">
<ul id="twitter_update_list"><li></li></ul></div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/gopalraju.json?callback=twitterCallback2&count=1"></script>
<a class="followme" href="http://twitter.com/gopalraju">Follow us on twitter</a>
</div>
<img src="<?php bloginfo('template_url'); ?>/images/pdlogo.gif" alt="productivedreams" class="pdlogo"/>
</div>
<div class="google-ads">
</div>
</div>
<?php get_footer(); ?>
Let us know
Kraai
Senior Poster
3,981 posts since Feb 2008
Reputation Points: 76
Solved Threads: 87
Hi
Glad you got it working
Good luck
Kraai
Senior Poster
3,981 posts since Feb 2008
Reputation Points: 76
Solved Threads: 87