| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/peyco.es/wp-content/themes/StoreFront/layouts/ |
Upload File : |
<?php
/**
*
* The template fragment to show post footer
*
**/
// disable direct access to the file
defined('GAVERN_WP') or die('Access denied');
global $gk_tpl;
$tag_list = get_the_tag_list( '', __( ' ', GKTPLNAME ) );
$params = get_post_custom();
$params_aside = isset($params['gavern-post-params-aside']) ? $params['gavern-post-params-aside'][0] : false;
$param_aside = true;
$param_tags = true;
if($params_aside) {
$params_aside = unserialize(unserialize($params_aside));
$param_aside = $params_aside['aside'] == 'Y';
$param_tags = $params_aside['tags'] == 'Y';
}
?>
<?php do_action('gavernwp_after_post_content'); ?>
<?php if(is_singular()) : ?>
<?php
// variable for the social API HTML output
$social_api_output = gk_social_api(get_the_title(), get_the_ID());
?>
<?php if($social_api_output != '' || gk_author(true) || ($tag_list != '' && $param_tags)): ?>
<footer>
<?php if($social_api_output != '') : ?>
<?php echo $social_api_output; ?>
<?php endif; ?>
<?php if($tag_list != '' && $param_tags): ?>
<p class="tags">
<?php _e('<span>Etiquetas</span>', GKTPLNAME); ?>
<?php echo $tag_list; ?>
</p>
<?php endif; ?>
<?php if(gk_author(false, true)) : ?>
<?php gk_author(); ?>
<?php endif; ?>
</footer>
<?php endif; ?>
<?php endif; ?>