$banner,
'post__in' => (array)$content_id,
'orderby' => 'post__in',
'posts_per_page' => $banner_count,
'ignore_sticky_posts' => true,
);
?>
'post',
'posts_per_page' => $banner_count,
);
}
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
$i = 1;
while ( $query->have_posts() && $i <= $banner_count ) {
$query->the_post();
$banner_thumbnail = get_the_post_thumbnail_url( get_the_id(), 'medium-large' );
?>