' . get_the_title() . ''; } } /** * Creates the Loop for the ArtistPress Gallery template * * @author LTDI Studios * @since 1.0.0 * */ function artispressGalleryBody($post) { $post_meta_data = get_post_custom($post->ID); $custom_repeatables = unserialize($post_meta_data['artistpress_images'][0]); $galleryID = esc_html(get_the_ID()); $galleryOptions = get_option('artistpress_gallery_settings'); $galleryOptionBehavior = sanitize_text_field($galleryOptions['gallery_behavior']); $galleryOptionCaption = sanitize_text_field($galleryOptions['gallery_show_image_caption']); $galleryOptionImageTitle = sanitize_text_field($galleryOptions['gallery_show_image_title']); if( $galleryOptionBehavior == 'masonrylightbox' ) { echo '
'; echo '
'; } else { echo '
'; } else { echo ''; } } /** * Creates the No Images error for the ArtistPress Gallery template * * @author LTDI Studios * @since 1.0.0 * */ function artispressGalleryNoImages() { echo '

ArtistPress Error!

'; echo '

No images have been added to this gallery.

'; } /** * Creates the No Galleries error for the ArtistPress Gallery template * * @author LTDI Studios * @since 1.0.0 * */ function artispressNoGallery(){ echo '

ArtistPress Error!

'; echo '

No galleries have been added to this site.

'; } /** * Creates the link to return to the album * * @author LTDI Studios * @since 1.0.0 * */ function artispressReturnToAlbumLink(){ echo 'Back To Album'; } ?>