I want to add the jQuery BXSlider to my wordpress themes index.php file.
Then I want to load all posts from a certain category as Carousel elements.
What I mean to say is that it should automatically pick posts by using the snippet below (or something around that).
<?php query_posts($query_string . '&cat=81&showposts=3'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
I hope I am clear enough.