- 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>
33 lines
1.4 KiB
PHP
Executable File
33 lines
1.4 KiB
PHP
Executable File
<form action="" method="post">
|
|
|
|
|
|
<div class="tvd-row">
|
|
<div class="tvd-col tvd-s12 tvd-m3 tvd-l2">
|
|
<?php echo esc_html__( "Upload Icon Pack", 'thrive-dash' ) ?>
|
|
</div>
|
|
<div class="tvd-col tvd-s12 tvd-m9 tvd-l10">
|
|
|
|
<input type="hidden" name="tve_save_icon_pack" value="1">
|
|
<input type="text" value="<?php echo esc_attr( $this->icon_pack_name ); ?>" id="tve_icon_pack_file" name="tve_icon_pack_url" class="thrive_options" readonly="readonly">
|
|
<input type="hidden" value="<?php echo esc_attr( $this->icon_pack_id ); ?>" id="tve_icon_pack_file_id" name="attachment_id">
|
|
|
|
<a class="tvd-waves-effect tvd-waves-light tvd-btn-small tvd-btn-green" id="tve_icon_pack_upload" href="javascript:void(0)">
|
|
<i class="tvd-icon-plus"></i> <?php echo esc_html__( "Upload", 'thrive-dash' ) ?>
|
|
</a>
|
|
|
|
<a class="tvd-waves-effect tvd-waves-light tvd-btn-small tvd-btn-red" id="tve_icon_pack_remove" href="javascript:void(0)">
|
|
<i class="tvd-icon-remove"></i> <?php echo esc_html__( "Remove", 'thrive-dash' ) ?>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="tvd-row">
|
|
<div class="tvd-col tvd-s12 tvd-m3 tvd-l2">
|
|
<?php echo esc_html__( "Save options", 'thrive-dash' ) ?>
|
|
</div>
|
|
<div class="tvd-col tvd-s12 tvd-m9 tvd-l10">
|
|
<input type="submit" id="tve_icon_pack_save" value="<?php echo esc_html__( "Save and Generate Icons", 'thrive-dash' ) ?>" class="tvd-waves-effect tvd-waves-light tvd-btn-small tvd-btn-blue"/>
|
|
</div>
|
|
</div>
|
|
</form>
|