WP Slider
functions.php register_post_type('zboom',array( 'labels' => array( 'name' => 'zBoomSlider', 'add_new_item' => 'Slider Addition' ), 'public' => true, 'supports' => array( 'title','thumbnail' ) )); index.php <?php $slider_itm = new WP_Query(array( 'post_type' => 'zboom' )); ?> <?php while($slider_itm->have_posts()) : $slider_itm->the_post();?> <li><?php the_post_thumbnail(); ?></li> <?php endwhile; ?>