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; ?>

Comments

Popular posts from this blog

Deploy laravel application to digital ocean droplet

WP register_post_type() with custom CMB2 meta box

Git post receive setup at server for git push to the production from local machine