';
// Show Navigation if selected
if( $arixwp_gallerax_nav == 'show' ) {
echo '
';
}
// Show Captions if selected
if( $arixwp_gallerax_captions == 'show' ) {
echo '
Lorem Ipsum Dolor
';
}
echo '
- ';
$args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->ID );
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
$img_title = $attachment->post_title;
$img_caption = $attachment->post_excerpt;
$img_description = $attachment->post_content;
if ( is_multisite() ) {
global $blog_id;
$string = '/files';
$replace = '/wp-content/blogs.dir/' . $blog_id . '/files';
$thumbnailsrc = str_replace( $string, $replace, $attachment->guid );
} else {
$thumbnailsrc = $attachment->guid;
}
$realthumb = get_template_directory_uri() . '/libs/resizurr.php?m=' . ARIXWP_GAX_CROP . '&a=' . ARIXWP_GAX_ANCHOR . '&w=' . ARIXWP_GAX_TW . '&h=' . ARIXWP_GAX_TH . '&q=' . ARIXWP_GAX_QUALITY . '&src=' . $thumbnailsrc;
echo '
'; if ($attachments) { ?> '; echo '