Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/views/modals/wordpress-content.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

18 lines
626 B
PHP
Executable File

<span class="tcb-modal-title ml-0 mt-0"><?php echo esc_html__( 'Insert WordPress Content into the page', 'thrive-cb' ) ?></span>
<div class="pt-10" id="tve_tinymce_shortcode_mce_holder">
<?php
tcb_remove_tinymce_conflicts();
wp_editor( '', 'tve_tinymce_shortcode', [
'dfw' => true,
'tabfocus_elements' => 'insert-media-button,save-post',
'editor_height' => 260,
'textarea_rows' => 15,
] );
?>
</div>
<div class="tcb-modal-footer flex-end pr-0">
<button type="button" class="tcb-right tve-button medium green tcb-modal-save"><?php echo esc_html__( 'Save', 'thrive-cb' ) ?></button>
</div>