- 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>
28 lines
649 B
PHP
Executable File
28 lines
649 B
PHP
Executable File
<?php
|
|
$settings = array(
|
|
array(
|
|
'setting' => 'autoplay',
|
|
'checked_val' => 1,
|
|
'unchecked_val' => 0,
|
|
'label' => __( 'Autoplay', 'thrive-cb' ),
|
|
'info' => true,
|
|
'info_fn' => 'openTooltip',
|
|
),
|
|
array(
|
|
'setting' => 'controls',
|
|
'checked_val' => 0,
|
|
'unchecked_val' => 1,
|
|
'label' => __( 'Hide player controls', 'thrive-cb' ),
|
|
),
|
|
array(
|
|
'setting' => 'loop',
|
|
'checked_val' => 1,
|
|
'unchecked_val' => 0,
|
|
'label' => __( 'Loop', 'thrive-cb' ),
|
|
),
|
|
);
|
|
|
|
foreach ( $settings as $setting ) {
|
|
tcb_template( 'actions/responsive-video-providers/provider-extra', $setting );
|
|
}
|