Leaf & Vine Liquor Selection

[insert_php]
$loop = new WP_Query( array( ‘post_type’ => ‘liquors’) );
while ( $loop->have_posts() ) : $loop->the_post();
$url = get_post_meta( get_the_ID(), ‘URL’, true );
$imgSrc = get_post_meta( get_the_ID(), ‘image’, true );
$title = the_title(”,”,false);
echo “

“;
endwhile;
[/insert_php]