-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
xtrasolutionsco.com
/
wp-content
/
plugins
/
tp-core
/
include
/
elementor
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
cssjs
--
NONE
templates
--
NONE
about.php
57.33KB
Edit File
Delete File
Rename
advanced-pricing.php
64.474KB
Edit File
Delete File
Rename
advanced-tab.php
22.697KB
Edit File
Delete File
Rename
animate-breadcrumb.php
21.405KB
Edit File
Delete File
Rename
application-form.php
5.887KB
Edit File
Delete File
Rename
blog-post.php
14.489KB
Edit File
Delete File
Rename
brand-animation.php
14.009KB
Edit File
Delete File
Rename
brand.php
11.774KB
Edit File
Delete File
Rename
browser-link.php
19.368KB
Edit File
Delete File
Rename
button.php
13.898KB
Edit File
Delete File
Rename
choose.php
28.192KB
Edit File
Delete File
Rename
contact-form.php
5.874KB
Edit File
Delete File
Rename
contact-info.php
24.333KB
Edit File
Delete File
Rename
contact-location.php
12.081KB
Edit File
Delete File
Rename
contact-tab.php
28.563KB
Edit File
Delete File
Rename
cta.php
26.845KB
Edit File
Delete File
Rename
fact.php
19.314KB
Edit File
Delete File
Rename
faq-info.php
17.712KB
Edit File
Delete File
Rename
faq.php
8.988KB
Edit File
Delete File
Rename
features.php
19.782KB
Edit File
Delete File
Rename
heading.php
11.38KB
Edit File
Delete File
Rename
hero-banner-1.php
72.672KB
Edit File
Delete File
Rename
industrial-info.php
30.671KB
Edit File
Delete File
Rename
info-banner.php
25.576KB
Edit File
Delete File
Rename
intregration-slider.php
7.619KB
Edit File
Delete File
Rename
job-details-title.php
9.157KB
Edit File
Delete File
Rename
jobs-post.php
7.874KB
Edit File
Delete File
Rename
journey.php
10.352KB
Edit File
Delete File
Rename
list.php
7.856KB
Edit File
Delete File
Rename
platform-area.php
20.835KB
Edit File
Delete File
Rename
portfolio-details-info.php
12.162KB
Edit File
Delete File
Rename
portfolio-details-sidebar.php
20.109KB
Edit File
Delete File
Rename
portfolio-grid.php
11.735KB
Edit File
Delete File
Rename
portfolio-post.php
11.561KB
Edit File
Delete File
Rename
pricing.php
27.578KB
Edit File
Delete File
Rename
process.php
18.193KB
Edit File
Delete File
Rename
project-slider.php
12.682KB
Edit File
Delete File
Rename
projects.php
22.576KB
Edit File
Delete File
Rename
rank.php
24.613KB
Edit File
Delete File
Rename
sale-info.php
36.763KB
Edit File
Delete File
Rename
services-title-list.php
20.188KB
Edit File
Delete File
Rename
services.php
51.222KB
Edit File
Delete File
Rename
slider.php
42.381KB
Edit File
Delete File
Rename
social.php
20.705KB
Edit File
Delete File
Rename
team-details-skill.php
16.175KB
Edit File
Delete File
Rename
team-details.php
24.703KB
Edit File
Delete File
Rename
team.php
31.657KB
Edit File
Delete File
Rename
testimonial.php
44.519KB
Edit File
Delete File
Rename
text-slider.php
9.134KB
Edit File
Delete File
Rename
video-popup-button.php
8.592KB
Edit File
Delete File
Rename
video-popup.php
6.003KB
Edit File
Delete File
Rename
<?php namespace TPCore\Widgets; use Elementor\Widget_Base; use Elementor\Controls_Manager; use \Elementor\Group_Control_Background; use \Elementor\Group_Control_Image_Size; use \Elementor\Repeater; use \Elementor\Utils; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /** * Tp Core * * Elementor widget for hello world. * * @since 1.0.0 */ class TP_Team extends Widget_Base { use \TPCore\Widgets\TPCoreElementFunctions; /** * Retrieve the widget name. * * @since 1.0.0 * * @access public * * @return string Widget name. */ public function get_name() { return 'tp-team'; } /** * Retrieve the widget title. * * @since 1.0.0 * * @access public * * @return string Widget title. */ public function get_title() { return __( 'Team', 'tpcore' ); } /** * Retrieve the widget icon. * * @since 1.0.0 * * @access public * * @return string Widget icon. */ public function get_icon() { return 'tp-icon'; } /** * Retrieve the list of categories the widget belongs to. * * Used to determine where to display the widget in the editor. * * Note that currently Elementor supports only one category. * When multiple categories passed, Elementor uses the first one. * * @since 1.0.0 * * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'tpcore' ]; } /** * Retrieve the list of scripts the widget depended on. * * Used to set scripts dependencies required to run the widget. * * @since 1.0.0 * * @access public * * @return array Widget scripts dependencies. */ public function get_script_depends() { return [ 'tpcore' ]; } /** * Register the widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.0.0 * * @access protected */ protected function register_controls(){ $this->register_controls_section(); $this->style_tab_content(); } protected function register_controls_section() { // layout Panel $this->start_controls_section( 'tp_layout', [ 'label' => esc_html__('Design Layout', 'tpcore'), ] ); $this->add_control( 'tp_design_style', [ 'label' => esc_html__('Select Layout', 'tpcore'), 'type' => Controls_Manager::SELECT, 'options' => [ 'layout-1' => esc_html__('Layout 1', 'tpcore'), 'layout-2' => esc_html__('Layout 2', 'tpcore'), ], 'default' => 'layout-1', ] ); $this->end_controls_section(); // tp_section_title $this->tp_section_title_render_controls('section', 'Section Title', 'Sub Title', 'your title here', $default_description = 'Hic nesciunt galisum aut dolorem aperiam eum soluta quod ea cupiditate.',['layout-1']); // member list $this->start_controls_section( '_section_teams', [ 'label' => __( 'Members', 'tpcore' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $repeater = new Repeater(); $repeater->add_control( 'repeater_condition', [ 'label' => __( 'Field condition', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'style_1' => __( 'Style 1', 'tpcore' ), 'style_2' => __( 'Style 2', 'tpcore' ), ], 'default' => 'style_1', 'frontend_available' => true, 'style_transfer' => true, ] ); $repeater->start_controls_tabs( '_tab_style_member_box_itemr' ); $repeater->start_controls_tab( '_tab_member_info', [ 'label' => __( 'Information', 'tpcore' ), ] ); $repeater->add_control( 'image', [ 'type' => Controls_Manager::MEDIA, 'label' => __( 'Image', 'tpcore' ), 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'title', [ 'type' => Controls_Manager::TEXT, 'label_block' => true, 'label' => __( 'Title', 'tpcore' ), 'default' => __( 'TP Member Name', 'tpcore' ), 'placeholder' => __( 'Type title here', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'designation', [ 'type' => Controls_Manager::TEXT, 'label_block' => true, 'show_label' => true, 'label' => __( 'Job Title', 'tpcore' ), 'default' => __( 'TP Officer', 'tpcore' ), 'placeholder' => __( 'Type designation here', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'item_url', [ 'type' => Controls_Manager::TEXT, 'label_block' => true, 'show_label' => false, 'placeholder' => __( 'Type link here', 'tpcore' ), 'default' => __( '#', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->end_controls_tab(); $repeater->start_controls_tab( '_tab_member_links', [ 'label' => __( 'Links', 'tpcore' ), ] ); $repeater->add_control( 'show_social', [ 'label' => __( 'Show Social Links?', 'tpcore' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Yes', 'tpcore' ), 'label_off' => __( 'No', 'tpcore' ), 'return_value' => 'yes', 'style_transfer' => true, ] ); $repeater->add_control( 'web_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Website Address', 'tpcore' ), 'placeholder' => __( 'Add your profile link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'email_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Email', 'tpcore' ), 'placeholder' => __( 'Add your email link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'phone_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Phone', 'tpcore' ), 'placeholder' => __( 'Add your phone link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'facebook_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Facebook', 'tpcore' ), 'default' => __( '#', 'tpcore' ), 'placeholder' => __( 'Add your facebook link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'twitter_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Twitter', 'tpcore' ), 'default' => __( '#', 'tpcore' ), 'placeholder' => __( 'Add your twitter link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'instagram_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Instagram', 'tpcore' ), 'default' => __( '#', 'tpcore' ), 'placeholder' => __( 'Add your instagram link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'linkedin_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'LinkedIn', 'tpcore' ), 'placeholder' => __( 'Add your linkedin link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'youtube_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Youtube', 'tpcore' ), 'placeholder' => __( 'Add your youtube link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'googleplus_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Google Plus', 'tpcore' ), 'placeholder' => __( 'Add your Google Plus link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'flickr_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Flickr', 'tpcore' ), 'placeholder' => __( 'Add your flickr link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'vimeo_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Vimeo', 'tpcore' ), 'placeholder' => __( 'Add your vimeo link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'behance_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Behance', 'tpcore' ), 'placeholder' => __( 'Add your hehance link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'dribble_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Dribbble', 'tpcore' ), 'placeholder' => __( 'Add your dribbble link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'pinterest_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Pinterest', 'tpcore' ), 'placeholder' => __( 'Add your pinterest link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->add_control( 'gitub_title', [ 'type' => Controls_Manager::TEXT, 'label_block' => false, 'label' => __( 'Github', 'tpcore' ), 'placeholder' => __( 'Add your github link', 'tpcore' ), 'dynamic' => [ 'active' => true, ] ] ); $repeater->end_controls_tab(); $repeater->end_controls_tabs(); // REPEATER $this->add_control( 'teams', [ 'show_label' => false, 'type' => Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'title_field' => '<# print(title || "Carousel Item"); #>', 'default' => [ [ 'image' => [ 'url' => Utils::get_placeholder_image_src(), ], ], [ 'image' => [ 'url' => Utils::get_placeholder_image_src(), ], ], [ 'image' => [ 'url' => Utils::get_placeholder_image_src(), ], ], [ 'image' => [ 'url' => Utils::get_placeholder_image_src(), ], ], [ 'image' => [ 'url' => Utils::get_placeholder_image_src(), ], ] ] ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'thumbnail', 'default' => 'medium_large', 'separator' => 'before', 'exclude' => [ 'custom' ] ] ); $this->add_control( 'title_tag', [ 'label' => __( 'Title HTML Tag', 'tpcore' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'h1' => [ 'title' => __( 'H1', 'tpcore' ), 'icon' => 'eicon-editor-h1' ], 'h2' => [ 'title' => __( 'H2', 'tpcore' ), 'icon' => 'eicon-editor-h2' ], 'h3' => [ 'title' => __( 'H3', 'tpcore' ), 'icon' => 'eicon-editor-h3' ], 'h4' => [ 'title' => __( 'H4', 'tpcore' ), 'icon' => 'eicon-editor-h4' ], 'h5' => [ 'title' => __( 'H5', 'tpcore' ), 'icon' => 'eicon-editor-h5' ], 'h6' => [ 'title' => __( 'H6', 'tpcore' ), 'icon' => 'eicon-editor-h6' ] ], 'default' => 'h3', 'toggle' => false, ] ); $this->add_responsive_control( 'align', [ 'label' => __( 'Alignment', 'tpcore' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'tpcore' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => __( 'Center', 'tpcore' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => __( 'Right', 'tpcore' ), 'icon' => 'eicon-text-align-right', ], ], 'toggle' => true, 'selectors' => [ '{{WRAPPER}} .single-carousel-item' => 'text-align: {{VALUE}};' ] ] ); $this->end_controls_section(); // colum controls $this->tp_columns('col'); } protected function style_tab_content(){ $this->tp_section_style_controls('team_section', 'Section - Style', '.tp-el-section'); } /** * Render the widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * * @access protected */ protected function render() { $settings = $this->get_settings_for_display(); ?> <?php if ( $settings['tp_design_style'] === 'layout-2' ) : $this->add_render_attribute('title_args', 'class', 'tp-section-title'); ?> <div class="tp-team-area team-padding mlr pt-90 pb-110"> <div class="container-fluid"> <div class="row"> <div class="col-xxl-8 offset-xxl-2 col-xl-8 offset-xl-2 col-lg-10 offset-lg-1"> <div class="tp-section-box text-center mb-30"> <?php if ( !empty($settings['tp_section_sub_title']) ) : ?> <div class="tp-section-subtitle mb-15"> <?php echo tp_kses( $settings['tp_section_sub_title'] ); ?></div> <?php endif; ?> <?php if ( !empty($settings['tp_section_title' ]) ) : printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings['tp_section_title_tag'] ), $this->get_render_attribute_string( 'title_args' ), tp_kses( $settings['tp_section_title' ] ) ); endif; ?> </div> </div> </div> <div class="row"> <div class="col-xl-12"> <div class="team-active swiper-container"> <div class="swiper-wrapper"> <?php foreach ( $settings['teams'] as $key => $item ) : $title = tp_kses( $item['title' ] ); $item_url = esc_url($item['item_url']); $key = $key+1; if ( !empty($item['image']['url']) ) { $tp_team_image_url = !empty($item['image']['id']) ? wp_get_attachment_image_url( $item['image']['id'], $settings['thumbnail_size']) : $item['image']['url']; $tp_team_image_alt = get_post_meta($item["image"]["id"], "_wp_attachment_image_alt", true); } $this->add_render_attribute( 'title_team', 'class', 'tp-team-titile' ); ?> <div class=" swiper-slide tp-team-2__item text-center pt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="300ms"> <div class="tp-team-2__box fix"> <div class="tp-team-2__thumb"> <img class="w-100" src="<?php echo esc_url($tp_team_image_url); ?>" alt="<?php echo esc_attr($tp_team_image_alt); ?>"> <?php if( !empty($item['show_social'] ) ) : ?> <div class="tp-team-2__social"><ul> <?php if( !empty($item['web_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['web_title'] ); ?>"><i class="fas fa-globe"></i></a></li> <?php endif; ?> <?php if( !empty($item['phone_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['phone_title'] ); ?>"><i class="fas fa-phone"></i></a></li> <?php endif; ?> <?php if( !empty($item['facebook_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['facebook_title'] ); ?>"><i class="fab fa-facebook-f"></i></a></li> <?php endif; ?> <?php if( !empty($item['twitter_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['twitter_title'] ); ?>"><i class="fab fa-twitter"></i></a></li> <?php endif; ?> <?php if( !empty($item['linkedin_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['linkedin_title'] ); ?>"><i class="fab fa-linkedin"></i></a></li> <?php endif; ?> <?php if( !empty($item['instagram_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['instagram_title'] ); ?>"><i class="fab fa-instagram"></i></a></li> <?php endif; ?> <?php if( !empty($item['youtube_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['youtube_title'] ); ?>"><i class="fab fa-youtube"></i></a></li> <?php endif; ?> <?php if( !empty($item['googleplus_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['googleplus_title'] ); ?>"><i class="fab fa-google-plus-g"></i></a></li> <?php endif; ?> <?php if( !empty($item['flickr_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['flickr_title'] ); ?>"><i class="fab fa-flickr"></i></a></li> <?php endif; ?> <?php if( !empty($item['vimeo_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['vimeo_title'] ); ?>"><i class="fab fa-vimeo-v"></i></a></li> <?php endif; ?> <?php if( !empty($item['behance_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['behance_title'] ); ?>"><i class="fab fa-behance"></i></a></li> <?php endif; ?> <?php if( !empty($item['dribble_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['dribble_title'] ); ?>"><i class="fab fa-dribbble"></i></a></li> <?php endif; ?> <?php if( !empty($item['pinterest_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['pinterest_title'] ); ?>"><i class="fab fa-pinterest-p"></i></a></li> <?php endif; ?> <?php if( !empty($item['gitub_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['gitub_title'] ); ?>"><i class="fab fa-github"></i></a></li> <?php endif; ?> </ul> </div> <?php endif; ?> </div> </div> <div class="tp-team-2__content p-relative"> <div class="tp-team-2__share"> <a href="<?php echo $item_url;?>"><i class="fa-solid fa-share-nodes"></i></a> </div> <?php printf( '<%1$s %2$s><a href="%4$s">%3$s</a></%1$s>', tag_escape( $settings['title_tag'] ), $this->get_render_attribute_string( 'title_team' ), $title, $item_url ); ?> <?php if( !empty($item['designation']) ) : ?> <span><?php echo tp_kses( $item['designation'] ); ?></span> <?php endif; ?> </div> </div> <?php endforeach; ?> </div> <div class="team-slider-dots text-center mt-50"></div> </div> </div> </div> </div> </div> <?php else : $this->add_render_attribute('title_args', 'class', 'tp-section-title mb-20'); ?> <div class="tp-team-area pt-90 pb-120"> <div class="container"> <div class="row"> <?php foreach ( $settings['teams'] as $key => $item ) : $title = tp_kses( $item['title' ] ); $item_url = esc_url($item['item_url']); $key = $key+1; if ( !empty($item['image']['url']) ) { $tp_team_image_url = !empty($item['image']['id']) ? wp_get_attachment_image_url( $item['image']['id'], $settings['thumbnail_size']) : $item['image']['url']; $tp_team_image_alt = get_post_meta($item["image"]["id"], "_wp_attachment_image_alt", true); } $this->add_render_attribute( 'title_team', 'class', 'tp-team-titile' ); ?> <div class="col-xl-<?php echo esc_attr($settings['tp_col_for_desktop']); ?> col-lg-<?php echo esc_attr($settings['tp_col_for_laptop']); ?> col-md-<?php echo esc_attr($settings['tp_col_for_tablet']); ?> col-<?php echo esc_attr($settings['tp_col_for_mobile']); ?>"> <div class="tp-team-2__item text-center pt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="300ms"> <div class="tp-team-2__box fix"> <div class="tp-team-2__thumb"> <img class="w-100" src="<?php echo esc_url($tp_team_image_url); ?>" alt="<?php echo esc_attr($tp_team_image_alt); ?>"> <?php if( !empty($item['show_social'] ) ) : ?> <div class="tp-team-2__social"><ul> <?php if( !empty($item['web_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['web_title'] ); ?>"><i class="fas fa-globe"></i></a></li> <?php endif; ?> <?php if( !empty($item['phone_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['phone_title'] ); ?>"><i class="fas fa-phone"></i></a></li> <?php endif; ?> <?php if( !empty($item['facebook_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['facebook_title'] ); ?>"><i class="fab fa-facebook-f"></i></a></li> <?php endif; ?> <?php if( !empty($item['twitter_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['twitter_title'] ); ?>"><i class="fab fa-twitter"></i></a></li> <?php endif; ?> <?php if( !empty($item['linkedin_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['linkedin_title'] ); ?>"><i class="fab fa-linkedin"></i></a></li> <?php endif; ?> <?php if( !empty($item['instagram_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['instagram_title'] ); ?>"><i class="fab fa-instagram"></i></a></li> <?php endif; ?> <?php if( !empty($item['youtube_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['youtube_title'] ); ?>"><i class="fab fa-youtube"></i></a></li> <?php endif; ?> <?php if( !empty($item['googleplus_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['googleplus_title'] ); ?>"><i class="fab fa-google-plus-g"></i></a></li> <?php endif; ?> <?php if( !empty($item['flickr_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['flickr_title'] ); ?>"><i class="fab fa-flickr"></i></a></li> <?php endif; ?> <?php if( !empty($item['vimeo_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['vimeo_title'] ); ?>"><i class="fab fa-vimeo-v"></i></a></li> <?php endif; ?> <?php if( !empty($item['behance_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['behance_title'] ); ?>"><i class="fab fa-behance"></i></a></li> <?php endif; ?> <?php if( !empty($item['dribble_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['dribble_title'] ); ?>"><i class="fab fa-dribbble"></i></a></li> <?php endif; ?> <?php if( !empty($item['pinterest_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['pinterest_title'] ); ?>"><i class="fab fa-pinterest-p"></i></a></li> <?php endif; ?> <?php if( !empty($item['gitub_title'] ) ) : ?> <li><a href="<?php echo esc_url( $item['gitub_title'] ); ?>"><i class="fab fa-github"></i></a></li> <?php endif; ?> </ul> </div> <?php endif; ?> </div> </div> <div class="tp-team-2__content p-relative"> <div class="tp-team-2__share"> <a href="<?php echo $item_url;?>"><i class="fa-solid fa-share-nodes"></i></a> </div> <?php printf( '<%1$s %2$s><a href="%4$s">%3$s</a></%1$s>', tag_escape( $settings['title_tag'] ), $this->get_render_attribute_string( 'title_team' ), $title, $item_url ); ?> <?php if( !empty($item['designation']) ) : ?> <span><?php echo tp_kses( $item['designation'] ); ?></span> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div> </div> </div> <?php endif; } } $widgets_manager->register( new TP_Team() );
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat