Can you suggest some voting plugins? I am having a hard time finding decent ones in google? I am using post ratings already but wanted something different for other blogs. Thanks!
Found one, http://www.tevine.com/projects/voteitup/ I have it working here but can't figure out how to get it beside the title. It keeps putting it on a sep. line. http://www.truegadgets.com/
Thanks, no matter where I try to throw the code in it comes out the same. <?php get_header(); ?> <div id="content"> <?php include (TEMPLATEPATH . '/adsense-top.php'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="entry"> <?php DisplayVotes(get_the_ID(), "ticker"); ?> <h1 class="entrytitle" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" rel="bookmark"> <?php the_title(); ?> </a> </h1> <div class="entrymeta"> <?php the_time('F j, Y ');?> | By <?php the_author() ?> In <?php the_category(',') ?> | <?php comments_popup_link($comments_img_link .' Comments(0)', $comments_img_link .' Comments(1)', $comments_img_link . ' Comments(%)');?> </div> <div class="entrybody"> <?php the_content(__('Read more »'));?> </div> <p class="postmetadata"></p> <!-- <?php trackback_rdf(); ?> --> </div> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; else: ?> <p> <?php _e('Sorry, no posts matched your criteria.'); ?> </p> <?php endif; ?> <p> <?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?> </p> </div> <?php get_sidebar(); ?> <?php get_footer(); ?> PHP: