Help with simple jquery fade slideshow
Hello all!
I'm new to jquery. I'm trying to integrate a simple slideshow with Wordpress. I managed to show the post thumbnail but I can't figure out how to display the_content();
I'm replicating this slide
I have the HTML like this
- <div id="demo">
- <div id="title"></div>
- <div id="slideshow" class="pics">
- <?php query_posts('category_name=featured&showposts=10'); ?>
- <?php while (have_posts()) : the_post(); ?>
- <?php the_post_thumbnail(); ?>
- <?php endwhile;?>
- <?php the_content('Read more...'); ?>
- </div>
- </div>
but the content doesn't display.. I tried moving it around but I get different issues. Can someone please tell me what I'm doing wrong?