PATH:
home
/
letacommog
/
lavenue
/
wp-content
/
themes
/
deep
/
inc
/
webnus-core
/
the-grid
/
grid
/
single-portfolio-14
<?php /** * @package The_Grid * @author Themeone <themeone.master@gmail.com> * @copyright 2015 Themeone * * Skin Name: Single Portfolio 14 * Skin Slug: single-portfolio-14 * Date: 11/18/17 - 10:34:33AM * */ // Exit if accessed directly if (!defined('ABSPATH')) { exit; } // Init The Grid Elements instance $tg_el = The_Grid_Elements(); // Prepare main data for futur conditions $image = $tg_el->get_attachment_url(); $format = $tg_el->get_item_format(); $output = null; $media = $tg_el->get_media(); // if there is a media if ($media) { // Media wrapper start $output .= $tg_el->get_media_wrapper_start(); // Media content (image, gallery, audio, video) $output .= $media; // if there is an image if ($image || in_array($format, array('gallery', 'video'))) { // Media content holder start $output .= $tg_el->get_media_content_start(); // Overlay $output .= $tg_el->get_overlay(); // Center wrapper start $output .= $tg_el->get_center_wrapper_start(); $output .= $tg_el->get_media_button(array('icons' => array('image' => '<i class="tg-icon-add-2"></i>', 'audio' => '<i class="tg-icon-play"></i>', 'video' => '<i class="tg-icon-play"></i>', 'pause' => ''), 'action' => array('type' => 'lightbox')), 'tg-element-2'); $output .= $tg_el->get_center_wrapper_end(); // Center wrapper end // Bottom wrapper start $output .= '<div class="tg-bottom-holder">'; $output .= $tg_el->get_the_title(array('link' => false), 'tg-element-1'); $output .= '</div>'; // Bottom wrapper end // Media content holder end $output .= $tg_el->get_media_content_end(); } $output .= $tg_el->get_media_wrapper_end(); // Media wrapper end } return $output;
[+]
..
[-] single-portfolio-14.php
[edit]
[-] single-portfolio-14.css
[edit]