![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/trx_addons/templates/ |
<?php /** * The template to display shortcode's title, subtitle and description * * @package WordPress * @subpackage ThemeREX Addons * @since v1.6.08 */ extract(get_query_var('trx_addons_args_sc_show_titles')); if (empty($args['title_align'])) $args['title_align'] = 'none'; if (empty($args['subtitle_align'])) $args['subtitle_align'] = 'none'; if (empty($args['subtitle_position'])) $args['subtitle_position'] = 'above'; $align = !trx_addons_is_off($args['title_align']) ? ' sc_align_'.trim($args['title_align']) : ''; $style = !empty($args['title_style']) ? ' sc_item_title_style_'.trim($args['title_style']) : ''; $subtitle = ''; if (!empty($args['subtitle'])) { $subtitle_align = trx_addons_is_off($args['subtitle_align']) ? $align : ' sc_align_'.trim($args['subtitle_align']); $subtitle .= '<span class="' . esc_attr(apply_filters( 'trx_addons_filter_sc_item_subtitle_class', 'sc_item_subtitle' . ' ' . $sc . '_subtitle' . $subtitle_align . ' sc_item_subtitle_' . esc_attr($args['subtitle_position']) . $style, $sc) ) . '">' . trx_addons_prepare_macros($args['subtitle']) . '</span>'; } if ($args['subtitle_position'] == 'above' && (empty($args['title']) || trx_addons_is_off($args['subtitle_align']) || $args['subtitle_align'] == $args['title_align'])) { trx_addons_show_layout($subtitle); } if (!empty($args['title'])) { if (empty($size)) $size = 'large'; //is_page() ? 'large' : 'normal'; $title_tag = !empty($args['title_tag']) && !trx_addons_is_off($args['title_tag']) ? $args['title_tag'] : apply_filters('trx_addons_filter_sc_item_title_tag', 'large' == $size ? 'h2' : ('tiny' == $size ? 'h4' : 'h3')); $title_tag_class = (!empty($args['title_tag']) && !trx_addons_is_off($args['title_tag']) ? ' sc_item_title_tag' : '') . (!empty($args['title_color']) ? ($args['title_style'] != 'gradient' ? ' '.trx_addons_add_inline_css_class('color:' . esc_attr($args['title_color']) . ' !important') : '' ) : ''); ?><<?php echo esc_attr($title_tag); ?> class="<?php echo esc_attr(apply_filters('trx_addons_filter_sc_item_title_class', 'sc_item_title '.$sc.'_title'.$align.$style.$title_tag_class, $sc)); ?>"><?php if ( !trx_addons_is_off($args['subtitle_align']) && $args['subtitle_align'] != $args['title_align']) { echo '<span class="sc_item_title_inner">'; if ($args['subtitle_position'] == 'above') { trx_addons_show_layout($subtitle); } } if ($args['title_style'] == 'gradient') { echo '<span class="trx_addons_text_gradient sc_item_title_text"' . (!empty($args['title_color']) ? ' style="' . 'background:' . esc_attr($args['title_color']) . ';' . 'background:linear-gradient(' . max(0, min(360, (int) $args['gradient_direction'])) . 'deg,' . esc_attr(!empty($args['title_color2']) ? $args['title_color2'] : 'transparent') . ',' . esc_attr($args['title_color']) . ');' . '"' : '') . '>' . trx_addons_prepare_macros($args['title']) . '</span>'; } else { trx_addons_show_layout(trx_addons_prepare_macros($args['title']), '<span class="sc_item_title_text">', '</span>'); } if ( !trx_addons_is_off($args['subtitle_align']) && $args['subtitle_align'] != $args['title_align']) { if ($args['subtitle_position'] != 'above') { trx_addons_show_layout($subtitle); } echo '</span>'; } ?></<?php echo esc_attr($title_tag); ?>><?php } if ($args['subtitle_position'] !== 'above' && (trx_addons_is_off($args['subtitle_align']) || $args['subtitle_align'] == $args['title_align'])) { trx_addons_show_layout($subtitle); } if (!empty($args['description'])) { ?><div class="<?php echo esc_attr(apply_filters('trx_addons_filter_sc_item_description_class', 'sc_item_descr '.$sc.'_descr'.$align, $sc)); ?>"><?php trx_addons_show_layout( wpautop( do_shortcode( trx_addons_prepare_macros( $args['description'] ) ) ) ); ?></div><?php }