array(
'post',
),
'post_status' => array(
'publish',
),
// Order & Orderby Parameters
'order' => 'DESC',
'orderby' => 'date',
'ignore_sticky_posts' => true,
// Pagination Parameters
'posts_per_page' => 3,
);
$query = new WP_Query( $args );
if( $query->have_posts()){
while ($query->have_posts()) {
$query->the_post();
$bg = get_the_post_thumbnail_url();
?>