photo gallery

$output = '

‘;
$the_query = new WP_Query( ‘cat=72&posts_per_page=-1′ );
foreach( $the_query->posts as $k => $v ) {
$output .= ‘

‘;
$output .= ‘‘;
$output .= ‘

‘;
$output .= ‘

‘;
} /* foreach */
echo $output;
?>