Server IP : 162.213.251.212 / Your IP : 3.142.130.174 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/bestvalleywater.com/wp-content/themes/woodmart/inc/shortcodes/ |
Upload File : |
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) exit( 'No direct script access allowed' ); /** * ------------------------------------------------------------------------------------------------ * Countdown timer * ------------------------------------------------------------------------------------------------ */ if( ! function_exists( 'woodmart_shortcode_countdown_timer' )) { function woodmart_shortcode_countdown_timer($atts, $content) { $click = $output = $class = $timer_classes = ''; extract(shortcode_atts( array( 'date' => '2020/12/12', 'woodmart_color_scheme' => 'dark', 'size' => 'medium', 'align' => 'center', 'style' => 'standard', 'css_animation' => 'none', 'el_class' => '', 'hide_on_finish' => 'no', 'woodmart_css_id' => '', 'css' => '', ), $atts )); $class .= ' ' . $el_class; $class .= ' color-scheme-' . $woodmart_color_scheme; $class .= ' text-' . $align; $class .= woodmart_get_css_animation( $css_animation ); $class .= ' wd-rs-' . $woodmart_css_id; if ( function_exists( 'vc_shortcode_custom_css_class' ) ) { $class .= ' ' . vc_shortcode_custom_css_class( $css ); } $timer_classes .= ' timer-size-' . $size; $timer_classes .= ' timer-style-' . $style; $timer_classes .= woodmart_get_old_classes( ' woodmart-timer' ); $timezone = 'GMT'; $date = str_replace( '/', '-', apply_filters( 'wd_countdown_timer_end_date', $date ) ); if ( apply_filters( 'woodmart_wp_timezone_element', false ) ) $timezone = get_option( 'timezone_string' ); ob_start(); woodmart_enqueue_js_library( 'countdown-bundle' ); woodmart_enqueue_js_script( 'countdown-element' ); woodmart_enqueue_inline_style( 'countdown' ); ?> <div class="wd-countdown-timer<?php echo esc_attr( $class ); ?>"> <div class="wd-timer<?php echo esc_attr( $timer_classes ); ?>" data-end-date="<?php echo esc_attr( $date ) ?>" data-timezone="<?php echo esc_attr( $timezone ) ?>" data-hide-on-finish="<?php echo esc_attr( $hide_on_finish ) ?>"> <span class="countdown-days"> <span class="wd-timer-value"> 0 </span> <span class="wd-timer-text"> <?php esc_html_e( 'days', 'woodmart' ); ?> </span> </span> <span class="countdown-hours"> <span class="wd-timer-value"> 00 </span> <span class="wd-timer-text"> <?php esc_html_e( 'hr', 'woodmart' ); ?> </span> </span> <span class="countdown-min"> <span class="wd-timer-value"> 00 </span> <span class="wd-timer-text"> <?php esc_html_e( 'min', 'woodmart' ); ?> </span> </span> <span class="countdown-sec"> <span class="wd-timer-value"> 00 </span> <span class="wd-timer-text"> <?php esc_html_e( 'sc', 'woodmart' ); ?> </span> </span> </div> </div> <?php $output = ob_get_contents(); ob_end_clean(); return $output; } }