Hello all,
I've been really happy with Twitter Tools but am wondering if there is a way to post more than just one tweet. I was using a short loop to display tweets, but it stopped updating the tweets so I switched to the shortcode. Here's what I was using:
<?php query_posts('category_name=Tweets'. '&showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<div class="meta">Posted: <?php the_date('F j, Y'); ?></div>
<?php endwhile;?>
Now I'm just using:
<?php aktt_latest_tweet(); ?>