%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/vc-shortcodes/shortcodes/counters-box/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/vc-shortcodes/shortcodes/counters-box/counters-box.php |
<?php // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Shortcode Heading * * @param $atts * * @return string */ function thim_shortcode_counters_box( $atts ) { $instance = shortcode_atts( array( 'counters_label' => 'Counters Box', 'counters_value' => '20', 'text_number' => '', 'view_more_text' => '', 'view_more_link' => '', 'background_color' => '', 'icon' => '', 'border_color' => '', 'counter_color' => '', 'style' => 'home-page', 'css_animation' => '', 'el_class' => '', ), $atts ); $args = array(); $args['before_title'] = '<h3 class="widget-title">'; $args['after_title'] = '</h3>'; $widget_template = THIM_DIR . 'inc/widgets/counters-box/tpl/base.php'; $child_widget_template = THIM_CHILD_THEME_DIR . 'inc/widgets/counters-box/base.php'; if ( file_exists( $child_widget_template ) ) { $widget_template = $child_widget_template; } ob_start(); if($instance['el_class']) echo '<div class="'.$instance['el_class'].'">'; echo '<div class="thim-widget-counters-box">'; include $widget_template; echo '</div>'; if($instance['el_class']) echo '</div>'; $html_output = ob_get_contents(); ob_end_clean(); return $html_output; } add_shortcode( 'thim-counters-box', 'thim_shortcode_counters_box' );