how to put a widget at the bottom of each post if you look at sleekbusiness.com you can see the technorati widget at the top of each post""" can some tell where in the main index editor do add the widget code that make widget at the bottom???? kudos for comments
You can use http://wordpress.org/extend/plugins/share-this/ or http://www.joostdevalk.nl/wordpress/sociable/. I recommend Sociable from joostdevalk.
Look for the following and replace "add it here" with your code right before the end /div.. But, also add it to single.php aswell if you want it displayed on each post's individual page, which sleek don't do..
pottz I dont see ADD IT IN HERE in the main index code??? <?php get_header(); ?> <div id="wrapper"> <div id="content"> <?php include('adsense_homepage_linkunit.php') ?> <?php if (have_posts()) : ?> <?php $count = 1 ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <a href="http://technorati.com/faves?sub=addfavbtn&add=http://sleekbusiness.com"><img src="http://static.technorati.com/pix/fave/tech-fav-1.png" alt="Add to Technorati Favorites" /></a><div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --> | Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit','',' |'); ?> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></small></p> </div> <?php if ($count==2) { include('adsense_homepage_banner.php'); } ?> <?php $count = $count + 1; ?> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> <div style="clear:both;"></div> </div> <?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> <?php get_footer(); ?>
You wont see it... I was using the 'add it here' text as an example only... i updated the code u posted as shown below in red.. If you want, PM me your index page code and I will mark it for you..