File: //home/globfdxw/diasporameetsafrica.com/wp-content/themes/efor/admin/override-post-gallery.php
<?php
function efor_gallery_type__slider($atts)
{
extract(shortcode_atts(array('ids' => "",
'orderby' => "",
'link' => "",
'size' => 'thumbnail'), $atts));
$output = "";
$items_with_commas = $ids;
if ($items_with_commas != "")
{
$items_in_array = preg_split("/[\s]*[,][\s]*/", $items_with_commas);
if ($orderby == 'rand')
{
shuffle($items_in_array);
}
$output .= '<div class="owl-carousel" data-items="1" data-loop="true" data-center="false" data-mouse-drag="true" data-nav="true" data-dots="true" data-autoplay="false" data-autoplay-speed="600" data-autoplay-timeout="2000">';
if (is_page_template('page_template-full.php') || is_page_template('page_template-medium.php') || is_singular('portfolio'))
{
$size = 'efor_image_size_7';
}
else
{
$size = 'efor_image_size_1';
}
foreach ($items_in_array as $item)
{
$image = wp_get_attachment_image_src($item, $size);
$image_alt = get_post_meta($item, '_wp_attachment_image_alt', true);
$image_caption = get_post_field('post_excerpt', $item);
if ($image_caption != "")
{
$image_caption = '<p class="owl-title">' . $image_caption . '</p>';
}
$output .= '<div>';
$output .= '<img alt="' . esc_attr($image_alt) . '" src="' . esc_url($image[0]) . '">';
$output .= $image_caption;
$output .= '</div>';
}
$output .= '</div>';
}
return $output;
}
function efor_portfolio_page__lightbox_gallery($atts)
{
extract(shortcode_atts(array('ids' => "",
'orderby' => "",
'link' => "",
'size' => 'thumbnail'), $atts));
$output = "";
$items_with_commas = $ids;
if ($items_with_commas != "")
{
$items_in_array = preg_split("/[\s]*[,][\s]*/", $items_with_commas);
if ($orderby == 'rand')
{
shuffle($items_in_array);
}
$first_item = true;
global $efor_portfolio_item_has_feat_img;
$feat_img = $efor_portfolio_item_has_feat_img;
global $efor_portfolio_page_grid_type__lightbox_gallery;
foreach ($items_in_array as $item)
{
$image_big = "";
$image_big_width_cropped = wp_get_attachment_image_src($item, 'efor_image_size_7'); // magnific-popup-width
if ($image_big_width_cropped[1] > $image_big_width_cropped[2])
{
$image_big = $image_big_width_cropped[0];
}
else
{
$image_big_height_cropped = wp_get_attachment_image_src($item, 'efor_image_size_8'); // magnific-popup-height
$image_big = $image_big_height_cropped[0];
}
$image_caption = get_post_field('post_excerpt', $item);
if ($image_caption != "")
{
$image_caption = 'title="' . esc_attr($image_caption) . '"';
}
if ($first_item)
{
if ($feat_img)
{
$output .= '<a class="lightbox" ' . $image_caption . ' href="' . esc_url($image_big) . '">' . efor_portfolio_item_feat_img__lightbox_gallery($efor_portfolio_page_grid_type__lightbox_gallery) . '</a>';
}
else
{
$output .= '<a class="lightbox" ' . $image_caption . ' href="' . esc_url($image_big) . '">' . get_the_title() . '</a>';
}
$first_item = false;
}
else
{
$output .= '<a class="lightbox" ' . $image_caption . ' href="' . esc_url($image_big) . '"></a>';
}
}
}
return $output;
}
function efor_post_gallery($output = "", $atts = null, $content = false, $tag = false)
{
$new_output = "";
if ((is_page_template('page_template-portfolio.php') || is_tax('portfolio-category')) && has_post_format('gallery'))
{
$new_output = efor_portfolio_page__lightbox_gallery($atts);
}
else
{
$gallery_type = get_option('efor_gallery_type' . '__' . get_the_ID(), 'grid');
if ($gallery_type == 'slider')
{
$new_output = efor_gallery_type__slider($atts);
}
else
{
$new_output = $output;
}
}
return $new_output;
}
add_filter('post_gallery', 'efor_post_gallery', 10, 4);