Skip to content

Instantly share code, notes, and snippets.

@cccamuseme
cccamuseme / custom-post-type-slider.php
Last active July 11, 2018 21:43
Custom post type slider
<div class="bx-wrapper">
<ul class="bxslider">
<?php
$slider = new WP_Query(array( 'post_type' => 'homepage_slider' ) );
if( $slider->have_posts() ) :
while($slider->have_posts()) :
$slider->the_post();
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' ); ?>