PLAYLIST

'videos', 'posts_per_page' => -1 ); $loop = new WP_Query( $args ); ?>
have_posts() ) : $loop->the_post(); $new_array = array(); $new_array['url'] = get_post_meta(get_the_ID(), 'recordedVideo', true); $new_array['title'] = get_the_title(); $new_array['thumbnail'] = get_post_meta(get_the_ID(), 'video_thumbnail_image', true); array_push($array,$new_array); endwhile; ?>