Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/menu/post_date.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- 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>
2025-11-03 21:04:30 -06:00

46 lines
1.3 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-theme
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
} ?>
<div id="tve-post_date-component" class="tve-component" data-view="PostDate">
<div class="dropdown-header" data-prop="docked">
<?php echo esc_html__( 'Post Date Options', 'thrive-cb' ); ?>
<i></i>
</div>
<div class="dropdown-content">
<div class="tve-control" data-view="Type"></div>
<div class="tve-control" data-view="DateFormatSelect"></div>
<div class="control-grid tcb-date-format-input">
<div class="tcb-label">
<?php echo esc_html__( 'Format String', 'thrive-cb' ); ?>
<span class="click tcb-post-date-tooltip-icon" data-fn="openTooltip">
<?php tcb_icon( 'info-circle-solid' ); ?>
</span>
</div>
<div class="tve-control" data-view="DateFormatInput"></div>
</div>
<div class="tve-control" data-view="ShowTimeFormat"></div>
<div class="tve-control" data-view="TimeFormatSelect"></div>
<div class="control-grid tcb-time-format-input">
<div class="tcb-label">
<?php echo esc_html__( 'Format String', 'thrive-cb' ); ?>
<span class="click tcb-post-date-tooltip-icon" data-fn="openTooltip">
<?php tcb_icon( 'info-circle-solid' ); ?>
</span>
</div>
<div class="tve-control" data-view="TimeFormatInput"></div>
</div>
</div>
</div>