Cosa devo fare per attivare lo slideshow o comunque cosa fare per inserire i post nello slideshow grazieCodice:<div class="slide"> <?php while ($display->have_posts()) : $display->the_post(); $do_not_duplicate[] = $post->ID; ?> <div class="item"> <div class="item-contents"> <?php dt_thumb('width=430&height=247'); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="overlay"></a> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="title"><?php the_title(); ?></a> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="date"><?php the_time('l, d F Y'); ?></a> </div> </div> <?php endwhile; ?> <ul class="slideposts"> <?php while ($display->have_posts()) : $display->the_post(); ?> <li><?php dt_thumb('width=78&height=50&link=#'); ?></li> <?php endwhile; ?> </ul> </div>