// How to fetch NextGEN Gallery by custom query
$sqlquery = "SELECT * FROM wp_ngg_pictures
WHERE gid=3 AND wp_ngg_pictures.gid=\'wp_ngg_pictures\'.galleryid ";
$pageposts = $wpdb->get_results( $sqlquery );
if ( $pageposts ) {
global $post;
foreach ( $pageposts as $post ) {
?><img src="<?php echo $post->path; ?>/<?php echo $post->filename; ?>" alt=""><?php
}
}