PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
plugins
/
the-grid
/
includes
/
item-skins
/
grid
/
malabo
<?php /** * @package The_Grid * @author Themeone <themeone.master@gmail.com> * @copyright 2015 Themeone * * Skin: Malabo * */ // Exit if accessed directly if (!defined('ABSPATH')) { exit; } $tg_el = The_Grid_Elements(); $format = $tg_el->get_item_format(); $permalink = $tg_el->get_the_permalink(); $target = $tg_el->get_the_permalink_target(); $output = $tg_el->get_media_wrapper_start(); $output .= $tg_el->get_media(); $output .= $tg_el->get_overlay(); $output .= '<div class="tg-item-content">'; $output .= $tg_el->get_center_wrapper_start(); $output .= ($permalink) ? '<a class="tg-item-link" href="'.$permalink .'" target="'.$target.'"></a>' : null; $output .= $tg_el->get_the_title(); $output .= $tg_el->get_media_button(); $output .= $tg_el->get_link_button(); $output .= $tg_el->get_center_wrapper_end(); $output .= '</div>'; $output .= $tg_el->get_media_wrapper_end(); return $output;
[+]
..
[-] malabo.php
[edit]
[-] malabo.css
[edit]