- 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>
17 lines
478 B
PHTML
Executable File
17 lines
478 B
PHTML
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-visual-editor
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
|
|
?>
|
|
|
|
<audio controls style="width: 100%;" playsinline class="tcb-audio" data-c-f-id="<?php echo $data['name']; ?>" data-title="<?php echo $data['title']; ?>" data-id="<?php echo $data['id']; ?>" <?php echo $data['extra']; ?>>
|
|
<source src="<?php echo $data['url']; ?>" type="<?php echo $data['mime_type']; ?>">
|
|
</audio>
|