- 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>
18 lines
626 B
PHP
Executable File
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>
|