PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
plugins
/
the-grid
/
includes
/
item-skins
/
masonry
/
victoria
<?php /** * @package The_Grid * @author Themeone <themeone.master@gmail.com> * @copyright 2015 Themeone * * Skin: Victoria * */ // Exit if accessed directly if (!defined('ABSPATH')) { exit; } $tg_el = The_Grid_Elements(); $format = $tg_el->get_item_format(); $colors = $tg_el->get_colors(); $image = $tg_el->get_attachment_url(); $author_args = array( 'prefix' => __( 'By', 'tg-text-domain' ).' ', ); $media_args = array( 'icons' => array( 'image' => '<i class="tg-icon-arrows-out"></i>' ) ); $author = preg_replace('/(<a\b[^><]*)>/i', '$1 style="color:'.$colors['content']['span'].'">', $tg_el->get_the_author($author_args)); if ($format == 'quote' || $format == 'link') { $output = ($image) ? '<div class="tg-item-image" style="background-image: url('.esc_url($image).')"></div>' : null; $output .= $tg_el->get_content_wrapper_start(); $output .= '<i class="tg-'.$format.'-icon tg-icon-'.$format.'" style="color:'.$colors['content']['title'].'"></i>'; $output .= ($format == 'quote') ? $tg_el->get_the_quote_format() : $tg_el->get_the_link_format(); $output .= $tg_el->get_content_wrapper_end(); return $output; } else { $output = null; $media_content = $tg_el->get_media(); if ($media_content) { $output .= $tg_el->get_media_wrapper_start(); $output .= $media_content; if ($image || in_array($format, array('gallery', 'video'))) { $output .= $tg_el->get_center_wrapper_start(); $output .= $tg_el->get_overlay(); $output .= $tg_el->get_media_button($media_args); $output .= $tg_el->get_center_wrapper_end(); } $output .= $tg_el->get_the_duration(); $output .= $tg_el->get_media_wrapper_end(); } $output .= $tg_el->get_content_wrapper_start(); $output .= $tg_el->get_the_title(); $output .= $author; $output .= $tg_el->get_the_date(); $output .= $tg_el->get_the_views_number(); $output .= $tg_el->get_content_wrapper_end(); return $output; }
[+]
..
[-] victoria.css
[edit]
[-] victoria.php
[edit]