Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

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.

share|improve this question
I cannot see a question. What doesn't work? – toscho Oct 13 '12 at 15:03

closed as not a real question by kaiser, toscho Oct 13 '12 at 15:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.