- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
2.2 KiB
PHP
Executable File
45 lines
2.2 KiB
PHP
Executable File
<?php
|
|
$timezone_offset = get_option( 'gmt_offset' );
|
|
$sign = ( $timezone_offset < 0 ? '-' : '+' );
|
|
$min = abs( $timezone_offset ) * 60;
|
|
$hour = floor( $min / 60 );
|
|
$tzd = $sign . str_pad( $hour, 2, '0', STR_PAD_LEFT ) . ':' . str_pad( $min % 60, 2, '0', STR_PAD_LEFT );
|
|
?>
|
|
<div class="thrv_ult_widget thrv_wrapper tve_no_drag tve_no_icons tve_element_hover tvu_set_06 tve_red"
|
|
style="background-image: url('<?php echo TVE_Ult_Const::plugin_url( "tcb-bridge/editor-templates/css/images/tvu_set_06_widget_bg.png" ) ?>'); background-size:cover; background-position: center bottom;">
|
|
<div class="tve-ult-widget-content tve_editor_main_content">
|
|
<h5 style="color: #fff; font-size: 26px;margin-top: 40px;margin-bottom: 20px;" class="tvu-heading tve_p_center">
|
|
This Offer expires in:
|
|
</h5>
|
|
<div class="thrv_wrapper thrv_countdown_timer tve_cd_timer_plain tve_clearfix init_done tve_white tve_countdown_3"
|
|
data-date="<?php echo gmdate( 'Y-m-d', time() + 3600 * $timezone_offset + ( 24 * 3600 ) ) ?>"
|
|
data-hour="<?php echo gmdate( 'H', time() + 3600 * $timezone_offset ) ?>"
|
|
data-min="<?php echo gmdate( 'i', time() + 3600 * $timezone_offset ) ?>"
|
|
data-timezone="<?php echo $tzd ?>">
|
|
<div class="sc_timer_content tve_clearfix tve_block_center" style="margin-top: 5px;">
|
|
<div class="tve_t_day tve_t_part">
|
|
<div class="t-digits"></div>
|
|
<div class="t-caption thrv-inline-text">DAYS</div>
|
|
</div>
|
|
<div class="tve_t_hour tve_t_part">
|
|
<div class="t-digits"></div>
|
|
<div class="t-caption thrv-inline-text">HOURS</div>
|
|
</div>
|
|
<div class="tve_t_min tve_t_part">
|
|
<div class="t-digits"></div>
|
|
<div class="t-caption thrv-inline-text">MINUTES</div>
|
|
</div>
|
|
<div class="tve_t_sec tve_t_part">
|
|
<div class="t-digits"></div>
|
|
<div class="t-caption thrv-inline-text">SECONDS</div>
|
|
</div>
|
|
<div class="tve_t_text"></div>
|
|
</div>
|
|
</div>
|
|
<div class="thrv_wrapper thrv-button" style="margin-top: 40px;">
|
|
<a href="#" class="tcb-button-link">
|
|
<span class="tcb-button-texts"><span class="tcb-button-text thrv-inline-text">Get this Offer Now</span></span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|