File: /home/clinicamaciel/www/wp-content/plugins/trx_addons/cpt/services/tpl.tabs_simple.php
<?php
/**
* The style "tabs_simple" of the Services
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.6.14
*/
$args = get_query_var('trx_addons_args_sc_services');
$svg_present = false;
$featured_position = !empty($args['featured_position']) ? $args['featured_position'] : 'top';
$query_args = array(
'post_status' => 'publish',
'ignore_sticky_posts' => true
);
if (empty($args['ids'])) {
$query_args['posts_per_page'] = $args['count'];
$query_args['offset'] = $args['offset'];
}
$query_args = trx_addons_query_add_sort_order($query_args, $args['orderby'], $args['order']);
$query_args = trx_addons_query_add_posts_and_cats($query_args, $args['ids'], $args['post_type'], $args['cat'], $args['taxonomy']);
$query = new WP_Query( $query_args );
if ($query->found_posts > 0) {
if ($args['count'] > $query->found_posts) $args['count'] = $query->found_posts;
?><div class="sc_services sc_services_<?php
echo esc_attr($args['type']);
if (!empty($args['class'])) echo ' '.esc_attr($args['class']);
?>"><?php
trx_addons_sc_show_titles('sc_services', $args);
?><div class="sc_services_content sc_item_content"><?php
// Prepare tab's titles and contents
$tabs_list = array();
$trx_addons_number = $args['offset'];
while ( $query->have_posts() ) { $query->the_post();
$trx_addons_number++;
$meta = get_post_meta(get_the_ID(), 'trx_addons_options', true);
// Prepare tab's title block
$tabs_item = '<div class="sc_services_item sc_services_tabs_simple_item sc_services_tabs_list_item'
. ($trx_addons_number-1 == $args['offset'] ? ' sc_services_tabs_list_item_active' : '')
. (empty($args['featured']) || $args['featured']=='image'
? ' with_image'
: ($args['featured']=='icon' ? ' with_icon' : ' with_number')
)
. ' sc_services_item_featured_'.esc_attr($featured_position)
. '">';
// Featured image or icon
if ( has_post_thumbnail() && (empty($args['featured']) || $args['featured']=='image')) {
ob_start();
trx_addons_get_template_part('templates/tpl.featured.php',
'trx_addons_args_featured',
apply_filters('trx_addons_filter_args_featured', array(
'class' => 'sc_services_item_thumb',
'thumb_size' => apply_filters('trx_addons_filter_thumb_size', trx_addons_get_thumb_size($args['columns'] < 3 ? 'medium' : 'small'), 'services-tabs-simple')
),
'services-tabs-simple'
)
);
$tabs_item .= ob_get_contents();
ob_end_clean();
} else if ($args['featured']=='icon' && !empty($meta['icon'])) {
$svg = $img = '';
if (trx_addons_is_url($meta['icon'])) {
$img = $meta['icon'];
$meta['icon'] = basename($meta['icon']);
} else if (!empty($args['icons_animation']) && $args['icons_animation'] > 0 && ($svg = trx_addons_get_file_dir('css/icons.svg/'.trx_addons_esc($meta['icon']).'.svg')) != '')
$svg_present = true;
$tabs_item .= '<span id="'.esc_attr($args['id'].'_'.trim($meta['icon'])).'"'
. ' class="sc_services_item_icon '
. (!empty($svg)
? 'sc_icon_type_svg'
: (!empty($img)
? 'sc_icon_type_img'
: esc_attr($meta['icon'])
)
)
.'">'
. (!empty($svg)
? trx_addons_get_svg_from_file($svg)
: (!empty($img)
? '<img class="sc_icon_as_image" src="'.esc_url($img).'" alt="">'
: '')
)
. '</span>';
} else if ($args['featured']=='number') {
$tabs_item .= sprintf('<span class="sc_services_item_number">%02d</span>', $number);
}
// Post title and subtitle
$tabs_item .= '<div class="sc_services_item_info">'
. '<h6 class="sc_services_item_title">' . get_the_title() . '</h6>'
. '<div class="sc_services_item_subtitle">'
. trx_addons_get_post_terms(', ', get_the_ID(), TRX_ADDONS_CPT_SERVICES_TAXONOMY, false)
. '</div>'
. '</div>';
$tabs_item .= '</div>';
// Save to the list
$tabs_list[] = array(
'title' => $tabs_item,
'content' => '<div class="sc_services_tabs_content_item'
. ($trx_addons_number-1 == $args['offset'] ? ' sc_services_tabs_content_item_active' : '')
. '">'
. '<div class="sc_services_tabs_content_item_text">'
. get_the_excerpt()
. '</div>'
. '<div class="sc_services_item_button sc_item_button">'
. '<a href="'.esc_url(get_permalink()).'" class="sc_button">'.esc_html__('Learn more', 'trx_addons').'</a>'
. '</div>'
. '</div>'
);
}
wp_reset_postdata();
if (count($tabs_list) > 0) {
// Display titles
?><div class="sc_services_tabs_list"><?php
foreach($tabs_list as $item) trx_addons_show_layout($item['title']);
?></div><?php
// Display contents
?><div class="sc_services_tabs_content"><?php
foreach($tabs_list as $item) trx_addons_show_layout($item['content']);
?></div><?php
}
?></div><!-- /.sc_services_content --><?php
trx_addons_sc_show_links('sc_services', $args);
?></div><!-- /.sc_services --><?php
if (trx_addons_is_on(trx_addons_get_option('debug_mode')) && $svg_present) {
wp_enqueue_script( 'vivus', trx_addons_get_file_url('shortcodes/icons/vivus.js'), array('jquery'), null, true );
wp_enqueue_script( 'trx_addons-sc_icons', trx_addons_get_file_url('shortcodes/icons/icons.js'), array('jquery'), null, true );
}
}
?>