سلام
من می خواهم کد زیر رو تبدیل به یک اسلایدر کنم کی میتونه این کارو برای من انجام بده؟
<div id="featured">
<div id="featuredright">
<?php $recent = new WP_Query("cat=938&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<div id="featuredpost">
<div class="midthumb">
<?php $values = get_post_custom_values("Landscape"); if (isset($values[0])) { ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"target="_blank">
<img height="158px" width="210px" src="<?php echo get_post_meta($post->ID, "Landscape", true); ?>"></a>
<?php } else {?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><img height="158px" width="210px" src="<?php bloginfo('template_url'); ?>/images/nopic.jpg"></a>
<?php } ?>
</div>
<!--end: thumb-->
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" target="_blank">
<?php the_title(); ?>
</a></h2>
<div class="byline">
<?php the_time('l j M Y') ?>
</div>
<div class="limit">
<?php the_content_limit('800'); ?>
</div>
<!--end: limit-->
</div>
<!--end: featuredpost-->
<?php endwhile; ?>
</div>
<!--end: featuredright-->
<div class="clear"></div>
</div>
<!--end: featured-->
<div class="clear"></div>